observable:RecoveredObjectFacet leaf node


URI

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

Label

RecoveredObjectFacet

Description

Recoverability status of name, metadata, and content.

Target Classes (1)

Shape Properties

Instances of observable:RecoveredObjectFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

observable:RecoveredObjectFacet
observable:contentRecoveredStatus 1 vocabulary:RecoveredObjectStatusVocab
observable:metadataRecoveredStatus 1 vocabulary:RecoveredObjectStatusVocab
observable:nameRecoveredStatus 1 vocabulary:RecoveredObjectStatusVocab

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 .