Ontology Version: 2.2.0

cacontology-usa-federal:FederalInvestigationShape leaf node


URI

https://cacontology.projectvic.org/usa-federal-law#FederalInvestigationShape

Label

FederalInvestigationShape

Shape Properties

Instances of cacontology-usa-federal:FederalInvestigation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-usa-federal:FederalInvestigation
cacontology-usa-federal:collectsEvidence 1 uco-observable:ObservableObject
cacontology-usa-federal:investigatedBy 1 cacontology-usa-federal:FederalInvestigatorRole
cacontology-usa-federal:involvesDigitalEvidence 1 xsd:boolean
cacontology-usa-federal:requiresForensicAnalysis 1 xsd:boolean
1 1 xsd:dateTimeStamp

Implementation

@prefix cacontology-usa-federal: <https://cacontology.projectvic.org/usa-federal-law#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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-usa-federal:FederalInvestigationShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:dateTimeStamp ;
            sh:maxCount 1 ;
            sh:message "Federal investigation must have exactly one begin timestamp"@en ;
            sh:minCount 1 ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:class cacontology-usa-federal:FederalInvestigatorRole ;
            sh:message "Federal investigation must have at least one investigator"@en ;
            sh:minCount 1 ;
            sh:path cacontology-usa-federal:investigatedBy ],
        [ sh:class uco-observable:ObservableObject ;
            sh:message "Federal investigation must collect at least one piece of evidence"@en ;
            sh:minCount 1 ;
            sh:path cacontology-usa-federal:collectsEvidence ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Must specify if investigation involves digital evidence"@en ;
            sh:path cacontology-usa-federal:involvesDigitalEvidence ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Must specify if investigation requires forensic analysis"@en ;
            sh:path cacontology-usa-federal:requiresForensicAnalysis ] ;
    sh:targetClass cacontology-usa-federal:FederalInvestigation .