Skip to content

Commit

Permalink
Task: create a branch to merge proposed changes for v1.1 #153
Browse files Browse the repository at this point in the history
  • Loading branch information
donmendelson committed Mar 24, 2022
1 parent af317c9 commit ec5218f
Show file tree
Hide file tree
Showing 29 changed files with 86 additions and 86 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ on:
push:
branches:
- master
- v[1-9]**
- 'v[1-9]**'
pull_request:
branches:
- master
- v[1-9]**
- 'v[1-9]**'

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# FIX Orchestra Resources

This project contains resources and sample code for FIX Orchestra version 1.0. Technical specifications for FIX Orchestra are in project [fix-orchestra-spec](https://github.com/FIXTradingCommunity/fix-orchestra-spec).
This project contains resources and sample code for FIX Orchestra version 1.1. Technical specifications for FIX Orchestra are in project [fix-orchestra-spec](https://github.com/FIXTradingCommunity/fix-orchestra-spec).

FIX Orchestra is intended to provide a standard and some reference implementation for *machine readable rules of engagement* between counterparties. The goal is to reduce the time to get counterparties trading, and improve accuracy of implementations.

Expand Down Expand Up @@ -97,7 +97,7 @@ This module generates code that is conformant to the QuickFIX/J API for validati
A demonstration of session configuration for QuickFIX open-source FIX engine. It consumes an XML file in the `interfaces` schema.

## License
© Copyright 2016-2021 FIX Protocol Limited
© Copyright 2016-2022 FIX Protocol Limited

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion dsl-antlr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ The module may be included as a dependency in a Maven project as follows:
<dependency>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>dsl-antlr</artifactId>
<version>1.6.10</version>
<version>1.8.0</version>
</dependency>
```
4 changes: 2 additions & 2 deletions interfaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This module provides an XML schema for service offerings, protocols and session

See documentation of the schema in [Orchestra specifications](https://github.com/FIXTradingCommunity/fix-orchestra-spec/tree/master/v1-0-RC5)

The XML namespace for the schema is `http://fixprotocol.io/2020/orchestra/interfaces`.
The XML namespace for the schema is `http://fixprotocol.io/2022/orchestra/interfaces`.

## Build

Expand All @@ -14,6 +14,6 @@ In addition to providing the XML schema as a resource, this module builds Java b
<dependency>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>interfaces</artifactId>
<version>1.6.10</version>
<version>1.8.0</version>
</dependency>
```
4 changes: 2 additions & 2 deletions interfaces/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
requires transitive java.xml.bind;
requires transitive jaxb2.basics.runtime;

exports io.fixprotocol._2020.orchestra.interfaces;
opens io.fixprotocol._2020.orchestra.interfaces;
exports io.fixprotocol._2022.orchestra.interfaces;
opens io.fixprotocol._2022.orchestra.interfaces;
exports org.purl.dc.elements._1;
opens org.purl.dc.elements._1;
exports org.purl.dc.terms;
Expand Down
4 changes: 2 additions & 2 deletions interfaces/src/main/resources/xsd/interfaces.xsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fixi="http://fixprotocol.io/2020/orchestra/interfaces" xmlns:dcterms="http://purl.org/dc/terms/" targetNamespace="http://fixprotocol.io/2020/orchestra/interfaces" elementFormDefault="qualified" version="1.0">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fixi="http://fixprotocol.io/2022/orchestra/interfaces" xmlns:dcterms="http://purl.org/dc/terms/" targetNamespace="http://fixprotocol.io/2022/orchestra/interfaces" elementFormDefault="qualified" version="1.1">
<xs:annotation>
<xs:documentation>
FIX interface configuration
© Copyright 2016-2020 FIX Protocol Limited
© Copyright 2016-2022 FIX Protocol Limited
Creative Commons Attribution-NoDerivatives 4.0
International Public License
</xs:documentation>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<fixi:interfaces xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fixi="http://fixprotocol.io/2020/orchestra/interfaces" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://fixprotocol.io/2020/orchestra/interfaces ../../../main/resources/xsd/interfaces.xsd">
<fixi:interfaces xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fixi="http://fixprotocol.io/2022/orchestra/interfaces" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://fixprotocol.io/2022/orchestra/interfaces ../../../main/resources/xsd/interfaces.xsd">
<fixi:metadata>
<dcterms:subject>Service offerings and sessions example file</dcterms:subject>
<dcterms:date>2019-08-07T09:30:00Z</dcterms:date>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
package io.fixprotocol.orchestra.message;

import java.util.List;
import io.fixprotocol._2020.orchestra.repository.CodeSetType;
import io.fixprotocol._2020.orchestra.repository.CodeType;
import io.fixprotocol._2022.orchestra.repository.CodeSetType;
import io.fixprotocol._2022.orchestra.repository.CodeType;
import io.fixprotocol.orchestra.model.FixNode;
import io.fixprotocol.orchestra.model.FixType;
import io.fixprotocol.orchestra.model.FixValue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package io.fixprotocol.orchestra.message;

import io.fixprotocol._2020.orchestra.repository.MessageType;
import io.fixprotocol._2022.orchestra.repository.MessageType;
import io.fixprotocol.orchestra.model.ModelException;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package io.fixprotocol.orchestra.message;

import io.fixprotocol._2020.orchestra.repository.MessageType;
import io.fixprotocol._2022.orchestra.repository.MessageType;

/**
* Validate a message against an Orchestra file
Expand Down
1 change: 1 addition & 0 deletions orchestra-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<parent>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>parent</artifactId>
<version>1.8.0-SNAPSHOT</version>
</parent>
<artifactId>orchestra-common</artifactId>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,30 +45,30 @@
import org.stringtemplate.v4.STWriter;
import org.stringtemplate.v4.misc.STMessage;

import io.fixprotocol._2020.orchestra.repository.ActorType;
import io.fixprotocol._2020.orchestra.repository.Actors;
import io.fixprotocol._2020.orchestra.repository.CatComponentTypeT;
import io.fixprotocol._2020.orchestra.repository.Categories;
import io.fixprotocol._2020.orchestra.repository.CategoryType;
import io.fixprotocol._2020.orchestra.repository.CodeSetType;
import io.fixprotocol._2020.orchestra.repository.CodeType;
import io.fixprotocol._2020.orchestra.repository.ComponentRefType;
import io.fixprotocol._2020.orchestra.repository.ComponentType;
import io.fixprotocol._2020.orchestra.repository.Datatype;
import io.fixprotocol._2020.orchestra.repository.FieldRefType;
import io.fixprotocol._2020.orchestra.repository.FieldRuleType;
import io.fixprotocol._2020.orchestra.repository.FieldType;
import io.fixprotocol._2020.orchestra.repository.FlowType;
import io.fixprotocol._2020.orchestra.repository.GroupRefType;
import io.fixprotocol._2020.orchestra.repository.GroupType;
import io.fixprotocol._2020.orchestra.repository.MessageRefType;
import io.fixprotocol._2020.orchestra.repository.MessageType;
import io.fixprotocol._2020.orchestra.repository.MessageType.Responses;
import io.fixprotocol._2020.orchestra.repository.PresenceT;
import io.fixprotocol._2020.orchestra.repository.Repository;
import io.fixprotocol._2020.orchestra.repository.ResponseType;
import io.fixprotocol._2020.orchestra.repository.StateMachineType;
import io.fixprotocol._2020.orchestra.repository.SupportType;
import io.fixprotocol._2022.orchestra.repository.ActorType;
import io.fixprotocol._2022.orchestra.repository.Actors;
import io.fixprotocol._2022.orchestra.repository.CatComponentTypeT;
import io.fixprotocol._2022.orchestra.repository.Categories;
import io.fixprotocol._2022.orchestra.repository.CategoryType;
import io.fixprotocol._2022.orchestra.repository.CodeSetType;
import io.fixprotocol._2022.orchestra.repository.CodeType;
import io.fixprotocol._2022.orchestra.repository.ComponentRefType;
import io.fixprotocol._2022.orchestra.repository.ComponentType;
import io.fixprotocol._2022.orchestra.repository.Datatype;
import io.fixprotocol._2022.orchestra.repository.FieldRefType;
import io.fixprotocol._2022.orchestra.repository.FieldRuleType;
import io.fixprotocol._2022.orchestra.repository.FieldType;
import io.fixprotocol._2022.orchestra.repository.FlowType;
import io.fixprotocol._2022.orchestra.repository.GroupRefType;
import io.fixprotocol._2022.orchestra.repository.GroupType;
import io.fixprotocol._2022.orchestra.repository.MessageRefType;
import io.fixprotocol._2022.orchestra.repository.MessageType;
import io.fixprotocol._2022.orchestra.repository.MessageType.Responses;
import io.fixprotocol._2022.orchestra.repository.PresenceT;
import io.fixprotocol._2022.orchestra.repository.Repository;
import io.fixprotocol._2022.orchestra.repository.ResponseType;
import io.fixprotocol._2022.orchestra.repository.StateMachineType;
import io.fixprotocol._2022.orchestra.repository.SupportType;

/**
* @author Don Mendelson
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
import org.stringtemplate.v4.STGroupFile;
import org.stringtemplate.v4.STWriter;

import io.fixprotocol._2020.orchestra.repository.FlowType;
import io.fixprotocol._2020.orchestra.repository.MessageRefType;
import io.fixprotocol._2020.orchestra.repository.MessageType;
import io.fixprotocol._2020.orchestra.repository.ResponseType;
import io.fixprotocol._2020.orchestra.repository.StateMachineType;
import io.fixprotocol._2020.orchestra.repository.Synchronization;
import io.fixprotocol._2022.orchestra.repository.FlowType;
import io.fixprotocol._2022.orchestra.repository.MessageRefType;
import io.fixprotocol._2022.orchestra.repository.MessageType;
import io.fixprotocol._2022.orchestra.repository.ResponseType;
import io.fixprotocol._2022.orchestra.repository.StateMachineType;
import io.fixprotocol._2022.orchestra.repository.Synchronization;
import net.sourceforge.plantuml.SourceStringReader;

public class ImgGenerator {
Expand Down
2 changes: 1 addition & 1 deletion orchestra2doc/src/test/resources/mit_2016.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion repository-util/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,6 @@ This Maven module may be included as a dependency in a project as follows (subst
<dependency>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>repository-util</artifactId>
<version>1.6.10</version>
<version>1.8.0</version>
</dependency>
```
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private String intOrUnknown(int number) {
}


static final String REPOSITORY_NAMESPACE = "http://fixprotocol.io/2020/orchestra/repository";
static final String REPOSITORY_NAMESPACE = "http://fixprotocol.io/2022/orchestra/repository";

private static final NamespaceContext nsContext = new NamespaceContext() {
@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2019-2020 FIX Protocol Ltd
* Copyright 2019-2022 FIX Protocol Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017-2020 FIX Protocol Ltd
* Copyright 2017-2022 FIX Protocol Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
Expand Down Expand Up @@ -43,25 +43,25 @@
import org.purl.dc.elements._1.ObjectFactory;
import org.purl.dc.elements._1.SimpleLiteral;
import org.purl.dc.terms.ElementOrRefinementContainer;
import io.fixprotocol._2020.orchestra.repository.Actors;
import io.fixprotocol._2020.orchestra.repository.Categories;
import io.fixprotocol._2020.orchestra.repository.CategoryType;
import io.fixprotocol._2020.orchestra.repository.CodeSetType;
import io.fixprotocol._2020.orchestra.repository.CodeSets;
import io.fixprotocol._2020.orchestra.repository.ComponentRefType;
import io.fixprotocol._2020.orchestra.repository.ComponentType;
import io.fixprotocol._2020.orchestra.repository.Components;
import io.fixprotocol._2020.orchestra.repository.Datatypes;
import io.fixprotocol._2020.orchestra.repository.FieldRefType;
import io.fixprotocol._2020.orchestra.repository.FieldType;
import io.fixprotocol._2020.orchestra.repository.Fields;
import io.fixprotocol._2020.orchestra.repository.GroupRefType;
import io.fixprotocol._2020.orchestra.repository.GroupType;
import io.fixprotocol._2020.orchestra.repository.Groups;
import io.fixprotocol._2020.orchestra.repository.MessageType;
import io.fixprotocol._2020.orchestra.repository.Messages;
import io.fixprotocol._2020.orchestra.repository.Repository;
import io.fixprotocol._2020.orchestra.repository.Sections;
import io.fixprotocol._2022.orchestra.repository.Actors;
import io.fixprotocol._2022.orchestra.repository.Categories;
import io.fixprotocol._2022.orchestra.repository.CategoryType;
import io.fixprotocol._2022.orchestra.repository.CodeSetType;
import io.fixprotocol._2022.orchestra.repository.CodeSets;
import io.fixprotocol._2022.orchestra.repository.ComponentRefType;
import io.fixprotocol._2022.orchestra.repository.ComponentType;
import io.fixprotocol._2022.orchestra.repository.Components;
import io.fixprotocol._2022.orchestra.repository.Datatypes;
import io.fixprotocol._2022.orchestra.repository.FieldRefType;
import io.fixprotocol._2022.orchestra.repository.FieldType;
import io.fixprotocol._2022.orchestra.repository.Fields;
import io.fixprotocol._2022.orchestra.repository.GroupRefType;
import io.fixprotocol._2022.orchestra.repository.GroupType;
import io.fixprotocol._2022.orchestra.repository.Groups;
import io.fixprotocol._2022.orchestra.repository.MessageType;
import io.fixprotocol._2022.orchestra.repository.Messages;
import io.fixprotocol._2022.orchestra.repository.Repository;
import io.fixprotocol._2022.orchestra.repository.Sections;

/**
* Selectively compresses an Orchestra file <br>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository" xmlns:dc="http://purl.org/dc/elements/1.1" exclude-result-prefixes="fn dc xs">
xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository" xmlns:dc="http://purl.org/dc/elements/1.1" exclude-result-prefixes="fn dc xs">
<!-- Enriches datatypes with mappings for General Purpose Datatypes ISO11404 -->
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:namespace-alias stylesheet-prefix="#default" result-prefix="fixr"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository" xmlns:dc="http://purl.org/dc/elements/1.1/" exclude-result-prefixes="fn fixr dc">
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions" xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository" xmlns:dc="http://purl.org/dc/elements/1.1/" exclude-result-prefixes="fn fixr dc">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:apply-templates/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:fn="http://www.w3.org/2005/xpath-functions"
xmlns:functx="http://www.functx.com"
xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository"
xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository"
xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"
exclude-result-prefixes="fn functx">
<!-- argument is phrase file URL, e.g. file://FIX.5.0SP2_en_phrases.xml" -->
Expand Down
2 changes: 1 addition & 1 deletion repository-util/src/test/resources/OrchestraFIXLatest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<fixr:repository xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository"
xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository"
xmlns:functx="http://www.functx.com"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
name="FIX.Latest"
Expand Down
2 changes: 1 addition & 1 deletion repository-util/src/test/resources/mit_2016.xml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<fixr:repository xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository" name="Rules of Engagement" version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<fixr:repository xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository" name="Rules of Engagement" version="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<fixr:metadata/>
<fixr:datatypes>
<fixr:datatype name="UTCTimestamp"/>
Expand Down
4 changes: 2 additions & 2 deletions repository/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This module provides an XML schema for message structures and workflow. Users ma

See documentation of the schema in [Orchestra specifications](https://github.com/FIXTradingCommunity/fix-orchestra-spec/tree/master/v1-0-DRAFT)

The XML namespace for the schema is `http://fixprotocol.io/2020/orchestra/repository`.
The XML namespace for the schema is `http://fixprotocol.io/2022/orchestra/repository`.

## Project Features

Expand All @@ -26,6 +26,6 @@ This Maven module may be included as a dependency in a project as follows (subst
<dependency>
<groupId>io.fixprotocol.orchestra</groupId>
<artifactId>repository</artifactId>
<version>1.6.10</version>
<version>1.8.0</version>
</dependency>
```
4 changes: 2 additions & 2 deletions repository/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
requires transitive java.xml.bind;
requires transitive jaxb2.basics.runtime;

exports io.fixprotocol._2020.orchestra.repository;
opens io.fixprotocol._2020.orchestra.repository;
exports io.fixprotocol._2022.orchestra.repository;
opens io.fixprotocol._2022.orchestra.repository;
exports org.purl.dc.elements._1;
opens org.purl.dc.elements._1;
exports org.purl.dc.terms;
Expand Down
4 changes: 2 additions & 2 deletions repository/src/main/resources/xsd/repository.xsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository" xmlns:dcterms="http://purl.org/dc/terms/" targetNamespace="http://fixprotocol.io/2020/orchestra/repository" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository" xmlns:dcterms="http://purl.org/dc/terms/" targetNamespace="http://fixprotocol.io/2022/orchestra/repository" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.1">
<xs:annotation>
<xs:documentation>
FIX Repository standard structure of messages with workflow
© Copyright 2016-2020 FIX Protocol Limited
© Copyright 2016-2022 FIX Protocol Limited
Creative Commons Attribution-NoDerivatives 4.0
International Public License
</xs:documentation>
Expand Down
5 changes: 2 additions & 3 deletions repository/src/main/resources/xsd/repositorytypes.xsd
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2020 rel. 2 sp1 (x64) (http://www.altova.com) by Don Mendelson (FIX Protocol Ltd. (FPL)) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fixr="http://fixprotocol.io/2020/orchestra/repository" targetNamespace="http://fixprotocol.io/2020/orchestra/repository" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:fixr="http://fixprotocol.io/2022/orchestra/repository" targetNamespace="http://fixprotocol.io/2022/orchestra/repository" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.1">
<xs:annotation>
<xs:documentation>
© Copyright 2016-2020 FIX Protocol Limited Creative
© Copyright 2016-2022 FIX Protocol Limited Creative
Commons Attribution-NoDerivatives 4.0
International Public License
</xs:documentation>
Expand Down
2 changes: 1 addition & 1 deletion repository/src/test/resources/examples/mit_2016.xml

Large diffs are not rendered by default.

0 comments on commit ec5218f

Please sign in to comment.