- https://purl.semanticip.org/linked-data/sdmx/ML/message/MessageType
TTL - owl:Class
- Message Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/message
- message
- complexType
MessageType is an abstract type which is used by all of the messages, to allow inheritance of common features. Every message consists of a mandatory header, followed by optional payload (which may occur multiple times), and finally an optional footer section for conveying error, warning, and informational messages.
- SDMXMessage.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="MessageType" abstract="true">
<xs:annotation>
<xs:documentation>MessageType is an abstract type which is used by all of the messages, to allow inheritance of common features. Every message consists of a mandatory header, followed by optional payload (which may occur multiple times), and finally an optional footer section for conveying error, warning, and informational messages.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Header" type="BaseHeaderType" />
<xs:any namespace="targetNamespace" minOccurs="0" maxOccurs="unbounded" />
<xs:element ref="footer:Footer" minOccurs="0" />
</xs:sequence>
</xs:complexType>
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Header ;
owl:allValuesFrom sip-sdmx-ML-message:BaseHeaderType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:Header ;
owl:qualifiedCardinality 1 ;
owl:onClass sip-sdmx-ML-message:BaseHeaderType
] ;
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
] ;