observable:ContactAffiliation leaf node


URI

https://ontology.unifiedcyberontology.org/uco/observable/ContactAffiliation

Label

ContactListAffiliation

Description

A contact affiliation is a grouping of characteristics unique to details of an organizational affiliation for a single contact entity.

Usage

Instances of observable:ContactAffiliation can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class owl:Thing
core:informalType owl:DatatypeProperty Informal Type serves as a parent property for string-valued properties meant to describe a type without implementing a class design. This property hierarchy supports a balancing point between semantic specificity and operational agility. The known benefits of describing types rather than implementing them include swift extensibility of some existing, or possibly non-existing, subclass hierarchy in UCO without requiring training in ontological development, taxonomic specification, or OWL, SHACL, or RDF maintenance logistics. The known detractions of using string-literals for type descriptions include that used vocabularies may require careful maintenance among data-sharing parties; that vocabularies require independent logistics (external to UCO) for providing definitions (i.e., dictionary-style semantics) to string-literals chosen; and that string-literals cannot by themselves encode hierarchical structure or entailments, such as the informal device type string 'ExamplePhone 8 P4321' entailing 'ExamplePhone 8', 'ExamplePhone', or 'ExamplePhone models discontinued in 2020'. Usage of Informal Type to house strings should be weighed against usage of classes when classes are available, and should periodically be reviewed for potential additions to UCO's class hierarchy or downstream extensions thereof. owl:Thing
types:threadNextItem owl:ObjectProperty The link to a next item in a thread. owl:Thing
types:threadPreviousItem owl:ObjectProperty A direct link to a previous item in a thread. owl:Thing

Property Shapes

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
(type range for property on this class)

GLOBAL RANGE
(type range for property globally)

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:contactMessaging owl:ObjectProperty Contact messaging specifies information characterizing details for contacting a contact entity by digital messaging.
0 observable:ContactMessaging
observable:ContactMessaging
observable:contactOrganization owl:ObjectProperty The name of the organization a contact works for or is assocciated with.
1 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:contactProfile owl:ObjectProperty Contact profile specifies information characterizing details for contacting a contact entity by online service.
0 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:organizationDepartment owl:DatatypeProperty Specifies a particular suborganization (division, branch, office, etc.) that exists within a larger organization.
1 xsd:string
xsd:string
observable:organizationLocation owl:ObjectProperty Specifies a geolocation address of an organization.
0 observable:ContactAddress
observable:ContactAddress
observable:organizationPosition owl:DatatypeProperty Specifies the title or role that a person plays within an organization.
1 xsd:string
xsd:string

Implementation

@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 .