https://ontology.unifiedcyberontology.org/uco/observable/ContactAffiliation
A contact affiliation is a grouping of characteristics unique to details of an organizational affiliation for a single contact entity.
Instances of observable:ContactAffiliation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
---|---|---|---|---|
observable:ContactAffiliation | ||||
observable:contactEmail | 0 |
observable:ContactEmail
|
||
observable:contactMessaging | 0 |
observable:ContactMessaging
|
||
observable:contactOrganization | 1 |
identity:Organization
|
||
observable:contactPhone | 0 |
observable:ContactPhone
|
||
observable:contactProfile | 0 |
observable:ContactProfile
|
||
observable:contactURL | 0 |
observable:ContactURL
|
||
observable:organizationDepartment | 1 |
xsd:string
|
||
observable:organizationLocation | 0 |
observable:ContactAddress
|
||
observable:organizationPosition | 1 |
xsd:string
|
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/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 xsd: <http://www.w3.org/2001/XMLSchema#> .
observable:ContactAffiliation a owl:Class,
sh:NodeShape ;
rdfs:label "ContactListAffiliation"@en ;
rdfs:comment "A contact affiliation is a grouping of characteristics unique to details of an organizational affiliation for a single contact entity."@en ;
rdfs:subClassOf core:UcoInherentCharacterizationThing ;
sh:property [ sh:class identity:Organization ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactOrganization ],
[ sh:class observable:ContactAddress ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:organizationLocation ],
[ sh:class observable:ContactEmail ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactEmail ],
[ sh:class observable:ContactMessaging ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactMessaging ],
[ sh:class observable:ContactPhone ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactPhone ],
[ sh:class observable:ContactProfile ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactProfile ],
[ sh:class observable:ContactURL ;
sh:minCount 0 ;
sh:nodeKind sh:IRI ;
sh:path observable:contactURL ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:organizationDepartment ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:nodeKind sh:Literal ;
sh:path observable:organizationPosition ] ;
sh:targetClass observable:ContactAffiliation .