StructureSpecificDataType
- https://purl.semanticip.org/linked-data/sdmx/ML/message/StructureSpecificDataType
TTL - owl:Class
- Structure Specific Data Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/message
- message
- complexType
StructureSpecificDataType defines the structure of the structure specific data message. Note that the data set payload type is abstract, and therefore it will have to be assigned a type in an instance. This type must be derived from the base type referenced. This base type defines a general structure which can be followed to allow for generic processing of the data even if the exact details of the data structure specific format are not known.
- SDMXMessage.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StructureSpecificDataType">
<xs:annotation>
<xs:documentation>StructureSpecificDataType defines the structure of the structure specific data message. Note that the data set payload type is abstract, and therefore it will have to be assigned a type in an instance. This type must be derived from the base type referenced. This base type defines a general structure which can be followed to allow for generic processing of the data even if the exact details of the data structure specific format are not known.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:restriction base="MessageType">
<xs:sequence>
<xs:element name="Header" type="StructureSpecificDataHeaderType" />
<xs:element name="DataSet" type="dsd:DataSetType" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="footer:Footer" minOccurs="0" />
</xs:sequence>
</xs:restriction>
</xs:complexContent>
</xs:complexType>
rdfs:subClassOf sip-sdmx-ML-message:MessageType ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Header ;
owl:allValuesFrom sip-sdmx-ML-message:StructureSpecificDataHeaderType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Header ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML-message:StructureSpecificDataHeaderType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:DataSet ;
owl:allValuesFrom dsd:DataSetType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty footer:Footer ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty footer:Footer ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:string
] ;