solveit-wa:WeaknessEvaluationShape leaf node


URI

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

Label

Weakness Evaluation Shape

Target Classes (1)

Shape Properties

Instances of solveit-wa:WeaknessEvaluation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

solveit-wa:WeaknessEvaluation
solveit-wa:detectDifficultyRating 1 xsd:integer
solveit-wa:evaluatesWeakness 1 1 solveit-core:Weakness
solveit-wa:impactRating 1 1 xsd:integer
solveit-wa:liImpactScore 1 1 xsd:integer
solveit-wa:likelihoodRating 1 1 xsd:integer
solveit-wa:rpnScore 1 xsd:integer

Implementation

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

solveit-wa:WeaknessEvaluationShape a sh:NodeShape ;
    rdfs:label "Weakness Evaluation Shape"@en ;
    sh:property [ sh:class solveit-core:Weakness ;
            sh:maxCount 1 ;
            sh:minCount 1 ;
            sh:name "evaluates weakness" ;
            sh:path solveit-wa:evaluatesWeakness ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 3 ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:name "likelihood rating" ;
            sh:path solveit-wa:likelihoodRating ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 3 ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:name "impact rating" ;
            sh:path solveit-wa:impactRating ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 3 ;
            sh:minInclusive 1 ;
            sh:name "detection difficulty rating" ;
            sh:path solveit-wa:detectDifficultyRating ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 9 ;
            sh:minCount 1 ;
            sh:minInclusive 1 ;
            sh:name "likelihood x impact score" ;
            sh:path solveit-wa:liImpactScore ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:maxInclusive 27 ;
            sh:minInclusive 1 ;
            sh:name "RPN score" ;
            sh:path solveit-wa:rpnScore ] ;
    sh:targetClass solveit-wa:WeaknessEvaluation .