AttributeType
- https://purl.semanticip.org/linked-data/sdmx/ML/metadata/AttributeType
TTL - owl:Class
- Attribute Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/metadata/generic
- metadata
- complexType
AttributeType defines the structure for a reported metadata attribute. A value for the attribute can be supplied as either a single value (enumerated or non-enumerated single value), or multi-lingual text values (either structured or unstructured). Optional child attributes are also available if the metadata attribute definition defines nested metadata attributes.
- SDMXMetadataGeneric.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="AttributeType">
<xs:annotation>
<xs:documentation>AttributeType defines the structure for a reported metadata attribute. A value for the attribute can be supplied as either a single value (enumerated or non-enumerated single value), or multi-lingual text values (either structured or unstructured). Optional child attributes are also available if the metadata attribute definition defines nested metadata attributes.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="common:AnnotableType">
<xs:sequence>
<xs:choice minOccurs="0">
<xs:element name="Value" type="xs:anySimpleType">
<xs:annotation>
<xs:documentation>Value holds any simple value (enumerated or not) for the metadata attribute.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="common:Text" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Text is used to supply parallel multi-lingual textual values for the reported metadata attribute. This will be used if the text format of the metadata attribute has a type of string and the multi-lingual value is set to true.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element ref="common:StructuredText" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>StructuredText is used to supply parallel multi-lingual structured (as XHTML) textual values for the reported metadata attribute. This will be used if the text format of the metadata attribute has a type of XHTML and the multi-lingual value is set to true.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element ref="Attribute" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Attribute contains the reported metadata attribute values for the child metadata attributes.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="common:IDType" use="required">
<xs:annotation>
<xs:documentation>The id attribute identifies the metadata attribute that the value is being reported for.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:complexContent>
</xs:complexType>rdfs:subClassOf sip-sdmx-ML-common:AnnotableType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Value ;
owl:allValuesFrom xsd:anySimpleType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Value ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:anySimpleType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Text ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Text ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:StructuredText ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:StructuredText ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-metadata:Attribute ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:allValuesFrom sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:qualifiedCardinality 1 ;
owl:onDataRange sip-sdmx-ML-common:IDType
] ;