Definition of s4auto:Address
Defined in https://saref.etsi.org/saref4auto/v1.1.1/ as:
A class to define common information related to an address. It is out of scope of SAREF4AUTO to define the details of such an address. It is instead recommended to reuse existing ontologies that specify how to model an address in terms of Street, Postal Code, City, Region, Country, etc.
Description as a Class
Turtle
@prefix dct: <http://purl.org/dc/terms/> .
@prefix ns1: <http://www.w3.org/2004/02/skos/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix s4auto: <https://saref.etsi.org/saref4auto/> .
s4auto:Vehicle rdfs:subClassOf [ a owl:Restriction ;
owl:onProperty s4auto:hasDestinationAddress ;
owl:someValuesFrom s4auto:Address ] .
<https://saref.etsi.org/saref4auto/v1.1.1/example/example1#> dct:references s4auto:Address .
<https://saref.etsi.org/saref4auto/v2.1.1/example/Position_Address#> dct:references s4auto:Address .
<https://saref.etsi.org/saref4auto/v1.1.1/> dct:references s4auto:Address ;
dct:subject s4auto:Address .
<https://saref.etsi.org/saref4auto/v2.1.1/> dct:references s4auto:Address ;
dct:subject s4auto:Address .
s4auto:Address a owl:Class ;
rdfs:label "Address"@en ;
dct:isReferencedBy <https://saref.etsi.org/saref4auto/v1.1.1/>,
<https://saref.etsi.org/saref4auto/v1.1.1/example/example1#>,
<https://saref.etsi.org/saref4auto/v2.1.1/>,
<https://saref.etsi.org/saref4auto/v2.1.1/example/Position_Address#> ;
rdfs:comment "A class to define common information related to an address. It is out of scope of SAREF4AUTO to define the details of such an address. It is instead recommended to reuse existing ontologies that specify how to model an address in terms of Street, Postal Code, City, Region, Country, etc."@en ;
rdfs:isDefinedBy <https://saref.etsi.org/saref4auto/v1.1.1/>,
<https://saref.etsi.org/saref4auto/v2.1.1/> ;
rdfs:seeAlso <https://saref.etsi.org/saref4auto/v1.1.1/>,
<https://saref.etsi.org/saref4auto/v2.1.1/> ;
ns1:hiddenLabel "Address" .