observable:ContactProfile leaf node


URI

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

Label

ContactProfile

Description

A contact profile is a grouping of characteristics unique to details for contacting a contact entity by online service.

Target Classes (1)

Shape Properties

Instances of observable:ContactProfile can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:ContactProfile
observable:contactProfilePlatform 1 observable:ObservableObject
observable:profile 1 observable:ObservableObject

Implementation

@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@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:ContactProfile a owl:Class,
        sh:NodeShape ;
    rdfs:label "ContactProfile"@en ;
    rdfs:comment "A contact profile is a grouping of characteristics unique to details for contacting a contact entity by online service."@en ;
    rdfs:subClassOf core:UcoInherentCharacterizationThing ;
    sh:property [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:contactProfilePlatform ],
        [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:IRI ;
            sh:path observable:profile ] ;
    sh:targetClass observable:ContactProfile .