observable:ProfileFacet leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#ProfileFacet

Label

ProfileFacet

Description

A profile facet is a grouping of characteristics unique to an explicit digital representation of identity and characteristics of the owner of a single user account associated with an online service or application. [based on https://en.wikipedia.org/wiki/User_profile]

Superclasses (1)

Usage

Instances of observable:ProfileFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
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

Property Shapes

By the associated SHACL property shapes, instances of observable:ProfileFacet 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:ProfileFacet
core:name owl:DatatypeProperty The name of a particular concept characterization.
0 1 xsd:string
xsd:string
observable:contactAddress owl:ObjectProperty Contact address specifies information characterizing a geolocation address of a contact entity.
0 1 observable:ContactAddress
observable:ContactAddress
observable:contactEmail owl:ObjectProperty Contact email specifies information characterizing details for contacting a contact entity by email.
0 1 observable:ContactEmail
observable:ContactEmail
observable:contactMessaging owl:ObjectProperty Contact messaging specifies information characterizing details for contacting a contact entity by digital messaging.
0 1 observable:ContactMessaging
observable:ContactMessaging
observable:contactPhone owl:ObjectProperty Contact phone specifies information characterizing details for contacting a contact entity by telephone.
0 1 observable:ContactPhone
observable:ContactPhone
observable:contactURL owl:ObjectProperty Contact URL specifies information characterizing details for contacting a contact entity by Uniform Resource Locator (URL).
0 1 observable:ContactURL
observable:ContactURL
observable:displayName owl:DatatypeProperty Display name specifies the name to display for some entity within a user interface.
0 1 xsd:string
xsd:string
observable:profileAccount owl:ObjectProperty Specifies the online service account associated with the profile.
0 1 observable:ObservableObject
observable:ObservableObject
observable:profileCreated owl:DatatypeProperty Specifies the date and time the profile was created.
0 1 xsd:dateTime
xsd:dateTime
observable:profileIdentity owl:ObjectProperty Specifies the identity associated with the profile.
0 1 identity:Identity
identity:Identity
observable:profileLanguage owl:DatatypeProperty Specifies the language associated with the profile. When present, it MUST be a language code conformant to RFC 5646/BCP47.
0 * xsd:string
xsd:string
observable:profileService owl:ObjectProperty Specifies the online service associated with the profile.
0 1 observable:ObservableObject
observable:ObservableObject
observable:profileWebsite owl:ObjectProperty Specifies the website URL associated with the profile.
0 1 observable:ObservableObject
observable:ObservableObject

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@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:ProfileFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "ProfileFacet"@en-US ;
    rdfs:comment "A profile facet is a grouping of characteristics unique to an explicit digital representation of identity and characteristics of the owner of a single user account associated with an online service or application. [based on https://en.wikipedia.org/wiki/User_profile]"@en-US ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class identity:Identity ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:profileIdentity ],
        [ sh:class observable:ContactAddress ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:contactAddress ],
        [ sh:class observable:ContactEmail ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:contactEmail ],
        [ sh:class observable:ContactMessaging ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:contactMessaging ],
        [ sh:class observable:ContactPhone ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:contactPhone ],
        [ sh:class observable:ContactURL ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:contactURL ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:profileAccount ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:profileService ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:profileWebsite ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:profileCreated ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path core:name ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:displayName ],
        [ sh:datatype xsd:string ;
            sh:minCount 0 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:profileLanguage ] ;
    sh:targetClass observable:ProfileFacet .