solveit-wa:WeaknessEvaluationSetShape leaf node


URI

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

Label

Weakness Evaluation Set Shape

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

solveit-wa:WeaknessEvaluationSet
solveit-wa:evaluatedBy 1 uco-identity:Identity
solveit-wa:hasEvaluation 1 solveit-wa:WeaknessEvaluation
solveit-wa:scoringScheme 1 xsd:string

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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 uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-wa:WeaknessEvaluationSetShape a sh:NodeShape ;
    rdfs:label "Weakness Evaluation Set Shape"@en ;
    sh:property [ sh:class solveit-wa:WeaknessEvaluation ;
            sh:minCount 1 ;
            sh:name "has evaluation" ;
            sh:path solveit-wa:hasEvaluation ],
        [ sh:class uco-identity:Identity ;
            sh:minCount 1 ;
            sh:name "evaluated by" ;
            sh:path solveit-wa:evaluatedBy ],
        [ sh:datatype xsd:string ;
            sh:in ( "fi" "fmea" "fmea6" ) ;
            sh:maxCount 1 ;
            sh:name "scoring scheme" ;
            sh:path solveit-wa:scoringScheme ] ;
    sh:targetClass solveit-wa:WeaknessEvaluationSet .