StructureType
- https://purl.semanticip.org/linked-data/sdmx/ML/message/StructureType
TTL - owl:Class
- Structure Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/message
- message
- complexType
StructureType defines the contents of a structure message. The payload is optional since this message may be returned from a web service with only information in the footer.
- SDMXMessage.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="StructureType">
<xs:annotation>
<xs:documentation>StructureType defines the contents of a structure message. The payload is optional since this message may be returned from a web service with only information in the footer.</xs:documentation>
</xs:annotation>
<xs:complexContent>
<xs:restriction base="MessageType">
<xs:sequence>
<xs:element name="Header" type="StructureHeaderType" />
<xs:element name="Structures" type="structure:StructuresType" minOccurs="0" />
<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:StructureHeaderType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Header ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML-message:StructureHeaderType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-structure:Structures ;
owl:allValuesFrom structure:StructuresType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-structure:Structures ;
owl:maxQualifiedCardinality 1 ;
owl:onClass structure:StructuresType
] ;
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
] ;