https://cacontology.projectvic.org/forensics#AutomatedContentAnalysisShape
Validation shape for automated content analysis instances.
Instances of cacontology-forensics:AutomatedContentAnalysis can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-forensics:AutomatedContentAnalysis | ||||
| cacontology-forensics:automationPercentage | 1 | 1 |
xsd:decimal
|
|
| cacontology-forensics:falsePositiveRate | 0 | 1 |
xsd:decimal
|
|
| cacontology-forensics:processingSpeed | 0 | 1 |
xsd:decimal
|
|
| cacontology-forensics:MassDigitalEvidenceProcessing | ||||
| cacontology-forensics:evidenceVolumeTerabytes | 1 | 1 |
xsd:decimal
|
|
| cacontology-forensics:filesProcessedMillions | 0 | 1 |
xsd:decimal
|
|
| cacontology-forensics:processingTimeframeDays | 1 | 1 |
xsd:nonNegativeInteger
|
|
| 1 | 1 |
xsd:dateTime
|
||
@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@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-forensics:AutomatedContentAnalysisShape a sh:NodeShape ;
rdfs:label "Automated Content Analysis Shape"@en ;
rdfs:comment "Validation shape for automated content analysis instances."@en ;
sh:property [ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 100.0 ;
sh:message "Automation percentage must be between 0.0 and 100.0."@en ;
sh:minCount 1 ;
sh:minInclusive 0.0 ;
sh:path cacontology-forensics:automationPercentage ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 1000000.0 ;
sh:message "Processing speed must be between 1.0 and 1000000.0 files per hour."@en ;
sh:minCount 0 ;
sh:minInclusive 1.0 ;
sh:path cacontology-forensics:processingSpeed ],
[ sh:datatype xsd:decimal ;
sh:maxCount 1 ;
sh:maxInclusive 1.0 ;
sh:message "False positive rate must be between 0.0 and 1.0."@en ;
sh:minCount 0 ;
sh:minInclusive 0.0 ;
sh:path cacontology-forensics:falsePositiveRate ] ;
sh:targetClass cacontology-forensics:AutomatedContentAnalysis .