solveit-wa:detectDifficultyRating leaf node


URI

https://ontology.solveit-df.org/solveit/weakness-assessment/detectDifficultyRating

Label

detection difficulty rating

Description

How difficult the weakness is to detect. Integer score 1-3 (1=Low/easy to detect, 2=Medium, 3=High/hard to detect).

Usage

DOMAINPROPERTYRANGE
solveit-wa:WeaknessEvaluation solveit-wa:detectDifficultyRating xsd:integer

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-wa: <https://ontology.solveit-df.org/solveit/weakness-assessment/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-wa:detectDifficultyRating a owl:DatatypeProperty ;
    rdfs:label "detection difficulty rating"@en ;
    rdfs:comment "How difficult the weakness is to detect. Integer score 1-3 (1=Low/easy to detect, 2=Medium, 3=High/hard to detect)."@en ;
    rdfs:domain solveit-wa:WeaknessEvaluation ;
    rdfs:range xsd:integer .