- https://purl.semanticip.org/linked-data/sdmx/ML/NotificationURLType
TTL - owl:Class
- Notification U R L Type
- complexType
NotificationURLType describes the structure of an http or email address. The content holds the addresses while an attribute indicates whether or not is expects the contents in a SOAP message.
- SDMXRegistrySubscription.xsd
<xs:complexType xmlns:xs="http://www.w3.org/2001/XMLSchema" name="NotificationURLType">
<xs:annotation>
<xs:documentation>NotificationURLType describes the structure of an http or email address. The content holds the addresses while an attribute indicates whether or not is expects the contents in a SOAP message.</xs:documentation>
</xs:annotation>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="isSOAP" type="xs:boolean" default="false">
<xs:annotation>
<xs:documentation>The isSOAP attribute, if true, indicates the provided URL expects the notification to be sent in a SOAP message.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
rdfs:subClassOf xsd:anyURI ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:isSOAP ;
owl:allValuesFrom xsd:boolean
] ;
rdfs:subClassOf [
a owl:Restriction ;
owl:onProperty sip-sdmx-ML:isSOAP ;
owl:maxQualifiedCardinality 1 ;
owl:onDataRange xsd:boolean
] ;