WildcardType
- https://purl.semanticip.org/linked-data/sdmx/ML/common/WildcardType
TTL - rdfs:Datatype
- Wildcard Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
- common
- simpleType
WildcardType is a single value code list, used to include the '*' character - indicating that the identification component is wildcarded.
- SDMXCommonReferences.xsd
<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="WildcardType">
<xs:annotation>
<xs:documentation>WildcardType is a single value code list, used to include the '*' character - indicating that the identification component is wildcarded.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="*">
<xs:annotation>
<xs:documentation>Indicates that any value of the identifier component is allowed.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>- xsd:string
owl:withRestrictions (
[ xsd:enumeration (
"*"xsd:string
) ]
)