solveit-wa:SixPointRatingShape leaf node


URI

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

Label

Six-point Rating Shape

Description

Ratings as bounded by the 'fmea6' scheme: each factor 1-6, likelihood x impact at most 36, RPN at most 216. Identical to the bounds WeaknessEvaluationShape already applies; named so that a consumer selecting a shape by scheme has one to select for every scheme.

Implementation

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

solveit-wa:SixPointRatingShape a sh:NodeShape ;
    rdfs:label "Six-point Rating Shape"@en ;
    rdfs:comment "Ratings as bounded by the 'fmea6' scheme: each factor 1-6, likelihood x impact at most 36, RPN at most 216. Identical to the bounds WeaknessEvaluationShape already applies; named so that a consumer selecting a shape by scheme has one to select for every scheme."@en ;
    sh:property [ sh:maxInclusive 6 ;
            sh:name "likelihood rating" ;
            sh:path solveit-wa:likelihoodRating ],
        [ sh:maxInclusive 6 ;
            sh:name "impact rating" ;
            sh:path solveit-wa:impactRating ],
        [ sh:maxInclusive 6 ;
            sh:name "detection difficulty rating" ;
            sh:path solveit-wa:detectDifficultyRating ],
        [ sh:maxInclusive 36 ;
            sh:name "likelihood x impact score" ;
            sh:path solveit-wa:liImpactScore ],
        [ sh:maxInclusive 216 ;
            sh:name "RPN score" ;
            sh:path solveit-wa:rpnScore ] .