FixedValueMapType
- https://purl.semanticip.org/linked-data/sdmx/ML/structure/FixedValueMapType
TTL - owl:Class
- Fixed Value Map Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- complexType
FixedValueMapType defines the structure for providing a fixed value for a source or target component.
- SDMXStructureStructureMappings.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="FixedValueMapType">
<xs:annotation>
<xs:documentation>FixedValueMapType defines the structure for providing a fixed value for a source or target component.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:extension base="common:AnnotableType">
<xs:sequence>
<xs:choice>
<xs:element name="Source" type="common:IDType" />
<xs:element name="Target" type="common:IDType" />
</xs:choice>
<xs:element name="Value" type="xs:string" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The fixed value for the component.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>rdfs:subClassOf sip-sdmx-ML-common:AnnotableType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Source ;
owl:allValuesFrom sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Source ;
owl:qualifiedCardinality 1 ;
owl:onDataRange sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Target ;
owl:allValuesFrom sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Target ;
owl:qualifiedCardinality 1 ;
owl:onDataRange sip-sdmx-ML-common:IDType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Value ;
owl:allValuesFrom xsd:string
] ;