Ontology Version: 2.2.0

cacontology-us-ncmec1:TipValidationShape leaf node


URI

https://cacontology.projectvic.org/us/ncmec#TipValidationShape

Label

Tip Validation Shape

Description

Validation shape for tip validation instances. - Validation status must be specified from the allowed list.

Implementation

@prefix cacontology-us-ncmec1: <https://cacontology.projectvic.org/us/ncmec#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-us-ncmec1:TipValidationShape a sh:NodeShape ;
    rdfs:label "Tip Validation Shape"@en ;
    rdfs:comment "Validation shape for tip validation instances."@en ;
    sh:property [ rdfs:comment "Validation status must be specified from the allowed list."@en ;
            sh:datatype xsd:string ;
            sh:in ( "validated" "partially_validated" "not_validated" ) ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:path cacontology-us-ncmec1:validationStatus ] ;
    sh:targetClass cacontology-us-ncmec1:TipValidation .