- https://purl.semanticip.org/linked-data/sdmx/ML/structure/SentinelValueType
TTL - owl:Class
- Sentinel Value Type
- http://www.sdmx.org/resources/sdmxml/schemas/v3_1/structure
- structure
- complexType
SentinelValueType defines the structure of a sentinel value. A sentinel is a value that has a special meaning within the text format representation of a component. The value is associated with a multi-lingual name and description.
- SDMXStructureBase.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="SentinelValueType">
<xs:annotation>
<xs:documentation>SentinelValueType defines the structure of a sentinel value. A sentinel is a value that has a special meaning within the text format representation of a component. The value is associated with a multi-lingual name and description.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element ref="common:Name" maxOccurs="unbounded" />
<xs:element ref="common:Description" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="value" type="xs:anySimpleType" use="required">
<xs:annotation>
<xs:documentation>The sentinel value being described.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Name ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Name ;
owl:minQualifiedCardinality 1 ;
owl:onDataRange xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML-common:Description ;
owl:allValuesFrom xsd:string
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:value ;
owl:allValuesFrom xsd:anySimpleType
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:value ;
owl:qualifiedCardinality 1 ;
owl:onDataRange xsd:anySimpleType
] ;