diff options
Diffstat (limited to 'Schemas/Parameter.xsd')
-rw-r--r-- | Schemas/Parameter.xsd | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Schemas/Parameter.xsd b/Schemas/Parameter.xsd index ad3d739..3b635fc 100644 --- a/Schemas/Parameter.xsd +++ b/Schemas/Parameter.xsd @@ -4,6 +4,14 @@ <xs:attribute name="Name" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="Description" type="xs:string" use="optional"/>
</xs:attributeGroup>
+ <xs:attributeGroup name="TypedNameable">
+ <xs:attributeGroup ref="Nameable"/>
+ <xs:attribute name="Type" type="xs:NMTOKEN" use="required"/>
+ </xs:attributeGroup>
+ <xs:complexType name="ComponentInstance">
+ <xs:attributeGroup ref="TypedNameable"/>
+ <xs:attribute name="Mapping" use="optional"/>
+ </xs:complexType>
<xs:simpleType name="SizeType">
<xs:restriction base="xs:positiveInteger">
<xs:pattern value="8|16|32"/>
|