Skip to content

Commit

Permalink
Schema cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
david-waltermire committed Oct 13, 2023
1 parent 0dd86f5 commit 1fcde22
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions schema/xml/metaschema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,13 @@

<xs:group name="DefinitionMetadataGroup">
<xs:sequence>
<xs:element name="formal-name" type="StringDatatype" minOccurs="0">
<xs:annotation>
<xs:documentation>A formal name for the data construct, to be presented in documentation.</xs:documentation>
</xs:annotation>
<xs:element name="formal-name" minOccurs="0">
<xs:simpleType>
<xs:annotation>
<xs:documentation>A formal name for the data construct, to be presented in documentation.</xs:documentation>
</xs:annotation>
<xs:restriction base="StringDatatype"/>
</xs:simpleType>
</xs:element>
<xs:element name="description" type="MarkupLineDatatype" minOccurs="0">
<xs:annotation>
Expand Down Expand Up @@ -444,7 +447,6 @@
</xs:annotation>
<xs:sequence>
<xs:group ref="DefinitionMetadataGroup"/>
<xs:element name="use-name" type="ModelNameType" minOccurs="0"/>
<xs:element name="constraint" minOccurs="0" type="DefineFlagConstraintsType"/>
<xs:element name="remarks" type="RemarksType" minOccurs="0"/>
<xs:element name="example" type="ExampleType" minOccurs="0" maxOccurs="unbounded"/>
Expand All @@ -454,7 +456,7 @@
<xs:attribute name="required" type="YesNoType" default="no"/>
<xs:attributeGroup ref="DeprecationAttributeGroup"/>
</xs:complexType>

<xs:simpleType name="JsonBaseUriType">
<xs:annotation>
<xs:documentation>The JSON Base URI is nominal base URI assigned to a JSON Schema instance expressing the model defined by this metaschema.</xs:documentation>
Expand Down

0 comments on commit 1fcde22

Please sign in to comment.