location:addressType leaf node


URI

https://unifiedcyberontology.org/ontology/uco/location#addressType

Label

addressType

Description

The type of the address, for instance home or work.

Usage

DOMAINPROPERTYRANGE
location:SimpleAddressFacet location:addressType xs:string

Implementation

@prefix location: <https://unifiedcyberontology.org/ontology/uco/location#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

location:addressType a owl:DatatypeProperty ;
    rdfs:label "addressType"@en ;
    rdfs:comment "The type of the address, for instance home or work."@en ;
    rdfs:domain location:SimpleAddressFacet ;
    rdfs:range xsd:string .