https://unifiedcyberontology.org/ontology/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 | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
investigation:authorizationIdentifier | owl:DatatypeProperty | The identifier for a particular authorization (e.g. warrant number) | xsd:string |
investigation:authorizationType | owl:DatatypeProperty | A label categorizing a type of authorization (e.g. warrant) | xsd:string |
investigation:exhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at any stage of an investigation to differentiate it from all other objects. | xsd:string |
investigation:focus | owl:DatatypeProperty | Specifies the topical focus of an investigation. | xsd:string |
investigation:investigationForm | owl:DatatypeProperty | A label categorizing a type of investigation (case, incident, suspicious-activity, etc.) | vocab:InvestigationFormVocab |
investigation:investigationStatus | owl:DatatypeProperty | A label characterizing the status of an investigation (open, closed, etc.). | xsd:string |
investigation:relevantAuthorization | owl:ObjectProperty | Specifies an authorization relevant to a particular investigation. | investigation:Authorization |
investigation:rootExhibitNumber | owl:DatatypeProperty | Specifies a unique identifier assigned to a given object at the start of its treatment as part of an investigation. The first node in a provenance chain, which can be viewed as a heirarchical tree originating from a single root. | xsd:string |
By the associated SHACL property shapes, instances of observable:ContactAffiliation can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
observable:ContactAffiliation | |||||||
observable:contactEmail | owl:ObjectProperty |
Contact email specifies information characterizing details for contacting a contact entity by email.
|
0 | * |
observable:ContactEmail
observable:ContactEmail |
observable:ContactEmail
|
|
observable:contactMessaging | owl:ObjectProperty |
Contact messaging specifies information characterizing details for contacting a contact entity by digital messaging.
|
0 | * |
observable:ContactMessaging
observable:ContactMessaging |
observable:ContactMessaging
|
|
observable:contactOrganization | owl:ObjectProperty |
The name of the organization a contact works for or is assocciated with.
|
1 | 1 |
identity:Organization
identity:Organization |
identity:Organization
|
|
observable:contactPhone | owl:ObjectProperty |
Contact phone specifies information characterizing details for contacting a contact entity by telephone.
|
0 | * |
observable:ContactPhone
observable:ContactPhone |
observable:ContactPhone
|
|
observable:contactProfile | owl:ObjectProperty |
Contact profile specifies information characterizing details for contacting a contact entity by online service.
|
0 | * |
observable:ContactProfile
observable:ContactProfile |
observable:ContactProfile
|
|
observable:contactURL | owl:ObjectProperty |
Contact URL specifies information characterizing details for contacting a contact entity by Uniform Resource Locator (URL).
|
0 | * |
observable:ContactURL
observable:ContactURL |
observable:ContactURL
|
|
observable:organizationDepartment | owl:DatatypeProperty |
Specifies a particular suborganization (division, branch, office, etc.) that exists within a larger organization.
|
0 | 1 |
xsd:string
|
xsd:string
|
|
observable:organizationLocation | owl:ObjectProperty |
Specifies a geolocation address of an organization.
|
0 | * |
observable:ContactAddress
observable:ContactAddress |
observable:ContactAddress
|
|
observable:organizationPosition | owl:DatatypeProperty |
Specifies the title or role that a person plays within an organization.
|
0 | 1 |
xsd:string
|
xsd:string
|
@prefix identity: <https://unifiedcyberontology.org/ontology/uco/identity#> .
@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 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 ;
sh:property [ sh:class identity:Organization ;
sh:datatype identity:Organization ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:contactOrganization ],
[ sh:class observable:ContactAddress ;
sh:datatype observable:ContactAddress ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:organizationLocation ],
[ sh:class observable:ContactEmail ;
sh:datatype observable:ContactEmail ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:contactEmail ],
[ sh:class observable:ContactMessaging ;
sh:datatype observable:ContactMessaging ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:contactMessaging ],
[ sh:class observable:ContactPhone ;
sh:datatype observable:ContactPhone ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:contactPhone ],
[ sh:class observable:ContactProfile ;
sh:datatype observable:ContactProfile ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
sh:path observable:contactProfile ],
[ sh:class observable:ContactURL ;
sh:datatype observable:ContactURL ;
sh:minCount 0 ;
sh:nodeKind sh:BlankNodeOrIRI ;
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 .