investigation:Investigation leaf node


URI

https://ontology.caseontology.org/case/investigation/Investigation

Label

Investigation

Description

An investigation is a grouping of characteristics unique to an exploration of the facts involved in a cyber-relevant set of suspicious activity.

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix investigation: <https://ontology.caseontology.org/case/investigation/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vocab: <https://ontology.caseontology.org/case/vocabulary/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

investigation:Investigation a owl:Class,
        sh:NodeShape ;
    rdfs:label "Investigation"@en ;
    rdfs:comment "An investigation is a grouping of characteristics unique to an exploration of the facts involved in a cyber-relevant set of suspicious activity."@en ;
    rdfs:subClassOf core:ContextualCompilation ;
    sh:property [ sh:datatype vocab:InvestigationFormVocab ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path investigation:investigationForm ],
        [ sh:class investigation:Authorization ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path investigation:relevantAuthorization ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path core:endTime ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path core:startTime ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path investigation:investigationStatus ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path investigation:focus ] .