https://ontology.solveit-df.org/solveit/core/Objective
A goal or objective in a digital forensic investigation that can be achieved through one or more techniques.
Instances of solveit-core:Objective can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class solveit-core:Objective | |||
| solveit-core:objectiveDescription | owl:DatatypeProperty | A detailed description of what this objective seeks to achieve. | xsd:string |
| solveit-core:objectiveName | owl:DatatypeProperty | The name of the objective. | xsd:string |
| solveit-core:includesTechnique | owl:ObjectProperty | Links an Objective to Techniques that can be used to achieve it. | solveit-core:Technique |
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-core: <https://ontology.solveit-df.org/solveit/core/> .
@prefix uco-core: <https://ontology.unifiedcyberontology.org/uco/core/> .
solveit-core:Objective a owl:Class ;
rdfs:label "SOLVE-IT Objective"@en ;
rdfs:comment "A goal or objective in a digital forensic investigation that can be achieved through one or more techniques."@en ;
rdfs:subClassOf uco-core:UcoObject .