https://unifiedcyberontology.org/ontology/uco/observable#ContactAddress
Instances of observable:ContactAddress can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
VALUE CONSTRAINTS |
LOCAL TYPE |
GLOBAL RANGE |
---|---|---|---|---|---|---|---|
observable:ContactAddress | |||||||
observable:contactAddressScope | owl:DatatypeProperty |
Contact address scope specifies the relevant scope (home, work, school, etc) for a geolocation address of a contact entity.
|
0 | 1 |
|
vocabulary:ContactAddressScopeVocab
|
owl:Thing |
observable:geolocationAddress | owl:ObjectProperty |
An administrative address for a particular geolocation.
|
0 | 1 |
|
location:Location
location:Location |
location:Location
|
@prefix location: <https://unifiedcyberontology.org/ontology/uco/location#> .
@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:ContactAddress a owl:Class,
sh:NodeShape ;
rdfs:label "ContactAddress"@en ;
rdfs:comment "A contact address is a grouping of characteristics unique to a geolocation address of a contact entity."@en ;
sh:property [ sh:class location:Location ;
sh:datatype location:Location ;
sh:maxCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:geolocationAddress ],
[ sh:datatype vocabulary:ContactAddressScopeVocab ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:contactAddressScope ] ;
sh:targetClass observable:ContactAddress .