solveit-wa:ThreePointRatingShape leaf node


URI

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

Label

Three-point Rating Shape

Description

Ratings as bounded by the 'fi' and 'fmea' schemes: each factor 1-3, likelihood x impact at most 9, RPN at most 27. Not targeted automatically; apply it when the set declares one of those schemes.

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:ThreePointRatingShape a sh:NodeShape ;
    rdfs:label "Three-point Rating Shape"@en ;
    rdfs:comment "Ratings as bounded by the 'fi' and 'fmea' schemes: each factor 1-3, likelihood x impact at most 9, RPN at most 27. Not targeted automatically; apply it when the set declares one of those schemes."@en ;
    sh:property [ sh:maxInclusive 9 ;
            sh:name "likelihood x impact score" ;
            sh:path solveit-wa:liImpactScore ],
        [ sh:maxInclusive 27 ;
            sh:name "RPN score" ;
            sh:path solveit-wa:rpnScore ],
        [ sh:maxInclusive 3 ;
            sh:name "likelihood rating" ;
            sh:path solveit-wa:likelihoodRating ],
        [ sh:maxInclusive 3 ;
            sh:name "impact rating" ;
            sh:path solveit-wa:impactRating ],
        [ sh:maxInclusive 3 ;
            sh:name "detection difficulty rating" ;
            sh:path solveit-wa:detectDifficultyRating ] .