ValueItemType
- https://purl.semanticip.org/linked-data/sdmx/ML/structure/ValueItemType
TTL - owl:Class
- Value Item Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- complexType
ValueItemType defines the structure of a value item. A value must be provided, and a longer name and description can be provided to provide additional meaning to the value (similar to a code in a code list).
- SDMXStructureCodelist.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="ValueItemType">
<xs:annotation>
<xs:documentation>ValueItemType defines the structure of a value item. A value must be provided, and a longer name and description can be provided to provide additional meaning to the value (similar to a code in a code list).</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="common:AnnotableType">
<xs:sequence>
<xs:element ref="common:Name" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="common:Description" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="required" />
</xs:extension>
</xs:complexContent>
</xs:complexType>rdfs:subClassOf sip-sdmx-ML-common:AnnotableType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Name ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Description ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:id ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:string
] ;