https://cacontology.projectvic.org/us/ncmec#TransferDetectionShape
Validation shape for transfer detection instances. - Transfer volume must be between 0.001 and 100000 MB. - Transfer frequency must be from the allowed list.
Instances of cacontology-us-ncmec:TransferDetection can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-us-ncmec:TransferDetection | ||||
| cacontology-us-ncmec:transferFrequency | 0 | 1 |
xsd:string
|
|
| cacontology-us-ncmec:transferVolume | 0 | 1 |
xsd:decimal
|
|
| cacontology-us-ncmec:CyberTipAnalysis | ||||
| cacontology-us-ncmec:analysisConfidence | 0 | 1 |
xsd:string
|
|
| cacontology-us-ncmec:analysisOf | 1 | 1 |
cacontology-us-ncmec:NCMECCybertipReport
|
|
| 1 | 1 |
uco-identity:Person
|
||
| 0 | 1 |
xsd:dateTime
|
||
| 1 | 1 |
xsd:dateTime
|
||
@prefix cacontology-us-ncmec: <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-ncmec:TransferDetectionShape a sh:NodeShape ;
rdfs:label "Transfer Detection Shape"@en ;
rdfs:comment "Validation shape for transfer detection instances."@en ;
sh:property [ rdfs:comment "Transfer volume must be between 0.001 and 100000 MB."@en ;
sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 100000.0 ;
sh:minCount 0 ;
sh:minInclusive 0.001 ;
sh:path cacontology-us-ncmec:transferVolume ],
[ rdfs:comment "Transfer frequency must be from the allowed list."@en ;
sh:datatype xsd:string ;
sh:in ( "single" "multiple" "ongoing" ) ;
sh:maxCount 1 ;
sh:minCount 0 ;
sh:path cacontology-us-ncmec:transferFrequency ] ;
sh:targetClass cacontology-us-ncmec:TransferDetection .