https://cacontology.projectvic.org/us/ncmec#AccountLinkingShape
Validation shape for account linking instances. - Account confidence must be from the allowed list. - Account linking must link to at least one digital account.
@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 uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-us-ncmec1:AccountLinkingShape a sh:NodeShape ;
rdfs:label "Account Linking Shape"@en ;
rdfs:comment "Validation shape for account linking instances."@en ;
sh:property [ rdfs:comment "Account confidence must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "verified" "probable" "possible" ) ;
sh:maxCount 1 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:accountConfidence ],
[ rdfs:comment "Account linking must link to at least one digital account."@en ;
sh:class uco-observable:DigitalAccount ;
sh:minCount 1 ;
sh:path cacontology-us-ncmec1:linkedToAccount ] ;
sh:targetClass cacontology-us-ncmec1:AccountLinking .