UsageType
Last modified by Artur K. on 2026/06/05 16:30
- https://purl.semanticip.org/linked-data/sdmx/ML/structure/UsageType
TTL - rdfs:Datatype
- Usage Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- simpleType
An enumeration of optional | mandatory to indicate the usage of an attribute or measure.
- SDMXStructureDataStructure.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="UsageType">
<xs:annotation>
<xs:documentation>An enumeration of optional | mandatory to indicate the usage of an attribute or measure.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="mandatory" />
<xs:enumeration value="optional" />
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"mandatory"xsd:string
"optional"xsd:string
) ]
)