Skip to content

Commit

Permalink
feat: allow extensions in SCE
Browse files Browse the repository at this point in the history
  • Loading branch information
barmac committed Jan 18, 2024
1 parent b8e857e commit 85904e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions SCE/SCE-Semantic.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element ref="sce:extensionElements" minOccurs="0" maxOccurs="1" />
</xsd:sequence>
<xsd:attribute name="conceptReference" type="xsd:anyURI" use="optional">
<xsd:annotation>
Expand All @@ -401,10 +402,18 @@
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:anyAttribute namespace="##other" processContents="lax"/>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>

<xsd:element name="extensionElements" type="sce:tExtensionElements" />
<xsd:complexType name="tExtensionElements">
<xsd:sequence>
<xsd:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>

<xsd:element name="elementType" type="sce:tElementType" abstract="true">
<xsd:annotation>
<xsd:documentation>
Expand Down

0 comments on commit 85904e1

Please sign in to comment.