Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<module>repository-util</module>
<module>orchestra-common</module>
<module>interfaces-util</module>
<module>orchestra2doc</module>
<!-- <module>orchestra2doc</module> -->
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
11 changes: 10 additions & 1 deletion repository/src/main/resources/xsd/repositorytypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,16 @@
<xs:documentation>Numeric identifier generally must be unique within a file for an element type, e.g. unique field tag</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="fixr:Name_t" use="required"/>
<xs:attribute name="name" type="fixr:Name_t" use="required">
<xs:annotation>
<xs:documentation>Name generally must be unique within a file for an element type, e.g. unique field name.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="displayName" type="xs:string">
<xs:annotation>
<xs:documentation>Arbitrary name of the element that can be used for documentation or display purposes.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="abbrName" type="fixr:Name_t"/>
<xs:attribute name="scenario" type="fixr:Name_t" default="base">
<xs:annotation>
Expand Down
Loading