MissingType

Last modified by Artur K. on 2026/06/05 16:24

  

https://purl.semanticip.org/linked-data/sdmx/ML/common/MissingType page_white_text TTL
rdfs:Datatype
Missing Type
http://www.sdmx.org/resources/sdmxml/schemas/v3_1/common
common
simpleType

MissingType is a reusable simple type that allows for missing values to be reported. This is required for attributes and measures to report an intentionally missing value of any other type than double or float.

SDMXCommon.xsd

<xs:simpleType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="MissingType">
  <xs:annotation>
   <xs:documentation>MissingType is a reusable simple type that allows for missing values to be reported. This is required for attributes and measures to report an intentionally missing value of any other type than double or float.</xs:documentation>
  </xs:annotation>
  <xs:restriction base="xs:string">
   <xs:enumeration value="#N/A" />
  </xs:restriction>
 </xs:simpleType>

 

xsd:string

owl:withRestrictions (
    [ xsd:enumeration (
        "#N/A"xsd:string
    ) ]
)

© Semantic R&D Group, 2026