observable:ContactEmail leaf node


URI

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

Label

ContactEmail

Description

A contact email is a grouping of characteristics unique to details for contacting a contact entity by email.

Shape Properties

Instances of observable:ContactEmail can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

VALUE CONSTRAINTS

LOCAL TYPE
(type defined for property on this class)

GLOBAL RANGE
(type range for property globally)

observable:ContactEmail
observable:contactEmailScope owl:DatatypeProperty Contact email scope specifies the relevant scope (home, work, school, etc) of details for contacting a contact entity by email.
0 1
vocabulary:ContactEmailScopeVocab
owl:Thing
observable:emailAddress owl:ObjectProperty An email address.
0 1
observable:ObservableObject
observable:ObservableObject
observable:ObservableObject

Implementation

@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 vocabulary: <https://unifiedcyberontology.org/ontology/uco/vocabulary#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:ContactEmail a owl:Class,
        sh:NodeShape ;
    rdfs:label "ContactEmail"@en ;
    rdfs:comment "A contact email is a grouping of characteristics unique to details for contacting a contact entity by email."@en ;
    sh:property [ sh:class observable:ObservableObject ;
            sh:datatype observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:emailAddress ],
        [ sh:datatype vocabulary:ContactEmailScopeVocab ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:contactEmailScope ] ;
    sh:targetClass observable:ContactEmail .