https://ontology.solveit-df.org/solveit/core/SolveitInvestigativeAction
An investigative action performed as an instance of one or more SOLVE-IT techniques, recording any mitigations applied on that occasion (0..n via appliedMitigation). The technique(s) used are expressed by rdf:type against the technique class(es), not by a separate property.
Instances of solveit-core:SolveitInvestigativeAction can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| From class solveit-core:SolveitInvestigativeAction | |||
| solveit-core:appliedMitigation | owl:ObjectProperty | Links a SolveitInvestigativeAction to Mitigation(s) that were actively applied during the execution to prevent or minimize potential weaknesses (0..n). | solveit-core:Mitigation |
| solveit-core:usedTechnique | owl:ObjectProperty | DEPRECATED. Formerly linked a SolveitInvestigativeAction to the SOLVE-IT Technique definition(s) executed. Superseded by typing the action with the technique class itself, following the uco-action:Technique metaclass pattern. | solveit-core:Technique |
@prefix case-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 solveit-core: <https://ontology.solveit-df.org/solveit/core/> .
solveit-core:SolveitInvestigativeAction a owl:Class ;
rdfs:label "SOLVE-IT Investigative Action"@en ;
rdfs:comment "An investigative action performed as an instance of one or more SOLVE-IT techniques, recording any mitigations applied on that occasion (0..n via appliedMitigation). The technique(s) used are expressed by rdf:type against the technique class(es), not by a separate property."@en ;
rdfs:subClassOf case-investigation:InvestigativeAction .