https://cacontology.projectvic.org/us/ncmec#PlatformCooperationShape
Validation shape for platform cooperation instances. - Platform cooperation must involve exactly one digital service. - Data provided must be from the allowed list. - Cooperation level must be from the allowed list. - Platform response time must be between 0.1 and 8760 hours.
@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:PlatformCooperationShape a sh:NodeShape ;
rdfs:label "Platform Cooperation Shape"@en ;
rdfs:comment "Validation shape for platform cooperation instances."@en ;
sh:property [ rdfs:comment "Platform response time must be between 0.1 and 8760 hours."@en ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 8760.0 ;
sh:minCount 0 ;
sh:minInclusive 0.1 ;
sh:path cacontology-us-ncmec1:platformResponseTime ],
[ rdfs:comment "Cooperation level must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "full" "partial" "limited" "none" ) ;
sh:maxCount 1 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:cooperationLevel ],
[ rdfs:comment "Data provided must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "account_info" "user_data" "content" "metadata" "logs" ) ;
sh:maxCount 5 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec1:dataProvided ],
[ rdfs:comment "Platform cooperation must involve exactly one digital service."@en ;
sh:class uco-observable:DigitalService ;
sh:maxCount 1 ;
sh:minCount 1 ;
sh:path cacontology-us-ncmec1:involvesPlatform ] ;
sh:targetClass cacontology-us-ncmec1:PlatformCooperation .