solveit-tool-profile:ToolCapabilityProfileShape leaf node


URI

https://ontology.solveit-df.org/solveit/tool-profile/ToolCapabilityProfileShape

Label

Tool Capability Profile Shape

Shape Properties

Instances of solveit-tool-profile:ToolCapabilityProfile can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

solveit-tool-profile:ToolCapabilityProfile
solveit-tool-profile:publishedBy 1 uco-identity:Identity

Implementation

@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix solveit-tool-profile: <https://ontology.solveit-df.org/solveit/tool-profile/> .
@prefix uco-identity: <https://ontology.unifiedcyberontology.org/uco/identity/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-tool-profile:ToolCapabilityProfileShape a sh:NodeShape ;
    rdfs:label "Tool Capability Profile Shape"@en ;
    sh:property [ sh:class uco-identity:Identity ;
            sh:maxCount 1 ;
            sh:message "publishedBy must reference a uco-identity:Identity. A profile carrying a publisher's name as a string literal predates SOLVE-IT 0.2.6; give the party an Identity node named with uco-core:name." ;
            sh:name "published by" ;
            sh:nodeKind sh:IRI ;
            sh:path solveit-tool-profile:publishedBy ] ;
    sh:targetClass solveit-tool-profile:ToolCapabilityProfile .