Skip to content

Commit

Permalink
Merge pull request #234 from patricklucas/191_cat_section_required_at…
Browse files Browse the repository at this point in the history
…tributes

[#191] Make some category, section attrs required
  • Loading branch information
kleihan authored Nov 4, 2024
2 parents 1a70e48 + 83395f6 commit 3ad203b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions repository/src/main/resources/xsd/repositorytypes.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@
<xs:sequence>
<xs:element name="annotation" type="fixr:annotation" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="name" type="fixr:Name_t"/>
<xs:attribute name="name" type="fixr:Name_t" use="required"/>
<xs:attribute name="FIXMLFileName" type="fixr:Name_t"/>
<xs:attribute name="componentType" type="fixr:CatComponentType_t"/>
<xs:attribute name="section" type="fixr:Name_t"/>
<xs:attribute name="section" type="fixr:Name_t" use="required"/>
<xs:attribute name="includeFile" type="fixr:CatIncludeFile_t"/>
<xs:attributeGroup ref="fixr:entityAttribGrp"/>
</xs:complexType>
Expand Down Expand Up @@ -928,7 +928,7 @@
<xs:sequence>
<xs:element name="annotation" type="fixr:annotation" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="name" type="fixr:Name_t"/>
<xs:attribute name="name" type="fixr:Name_t" use="required"/>
<xs:attribute name="displayOrder" type="xs:int"/>
<xs:attribute name="FIXMLFileName" type="fixr:Name_t"/>
<xs:attributeGroup ref="fixr:entityAttribGrp"/>
Expand Down

0 comments on commit 3ad203b

Please sign in to comment.