observable:RecoveredObjectFacet leaf node


URI

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

Label

RecoveredObjectFacet

Description

Recoverability status of name, metadata, and content.

Usage

Instances of observable:RecoveredObjectFacet can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class 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:RecoveredObjectFacet 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:RecoveredObjectFacet
observable:contentRecoveredStatus owl:DatatypeProperty Specifies the recoverability status of the content of an object.
1 vocabulary:RecoveredObjectStatusVocab
owl:Thing
observable:metadataRecoveredStatus owl:DatatypeProperty Specifies the recoverability status of the metadata of an object.
1 vocabulary:RecoveredObjectStatusVocab
owl:Thing
observable:nameRecoveredStatus owl:DatatypeProperty Specifies the recoverability status of the name of an object.
1 vocabulary:RecoveredObjectStatusVocab
owl:Thing

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 rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocabulary: <https://ontology.unifiedcyberontology.org/uco/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

observable:RecoveredObjectFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "RecoveredObjectFacet"@en ;
    rdfs:comment "Recoverability status of name, metadata, and content."@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
            sh:message "Value is outside the default vocabulary RecoveredObjectStatusVocab." ;
            sh:path observable:contentRecoveredStatus ;
            sh:severity sh:Info ],
        [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
            sh:message "Value is outside the default vocabulary RecoveredObjectStatusVocab." ;
            sh:path observable:metadataRecoveredStatus ;
            sh:severity sh:Info ],
        [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
            sh:message "Value is outside the default vocabulary RecoveredObjectStatusVocab." ;
            sh:path observable:nameRecoveredStatus ;
            sh:severity sh:Info ],
        [ sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:nameRecoveredStatus ],
        [ sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:metadataRecoveredStatus ],
        [ sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:contentRecoveredStatus ],
        [ sh:message "Value is not member of the vocabulary RecoveredObjectStatusVocab." ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
                        sh:in ( "recovered"^^vocabulary:RecoveredObjectStatusVocab "partially recovered"^^vocabulary:RecoveredObjectStatusVocab "overwritten"^^vocabulary:RecoveredObjectStatusVocab "unknown"^^vocabulary:RecoveredObjectStatusVocab ) ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:nameRecoveredStatus ],
        [ sh:message "Value is not member of the vocabulary RecoveredObjectStatusVocab." ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
                        sh:in ( "recovered"^^vocabulary:RecoveredObjectStatusVocab "partially recovered"^^vocabulary:RecoveredObjectStatusVocab "overwritten"^^vocabulary:RecoveredObjectStatusVocab "unknown"^^vocabulary:RecoveredObjectStatusVocab ) ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:metadataRecoveredStatus ],
        [ sh:message "Value is not member of the vocabulary RecoveredObjectStatusVocab." ;
            sh:or ( [ sh:datatype vocabulary:RecoveredObjectStatusVocab ;
                        sh:in ( "recovered"^^vocabulary:RecoveredObjectStatusVocab "partially recovered"^^vocabulary:RecoveredObjectStatusVocab "overwritten"^^vocabulary:RecoveredObjectStatusVocab "unknown"^^vocabulary:RecoveredObjectStatusVocab ) ] [ sh:datatype xsd:string ] ) ;
            sh:path observable:contentRecoveredStatus ] ;
    sh:targetClass observable:RecoveredObjectFacet .