tool:ToolConfigurationTypeFacet leaf node


URI

https://unifiedcyberontology.org/ontology/uco/tool#ToolConfigurationTypeFacet

Label

ToolConfigurationTypeFacet

Description

A tool configuration type facet is a grouping of characteristics unique to the instantial settings and setup of a tool.

Superclasses (1)

Target Classes (1)

Shape Properties

Instances of tool:ToolConfigurationTypeFacet can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

tool:ToolConfigurationTypeFacet
tool:dependencies 0 * tool:DependencyType
tool:usageContextAssumptions 0 * xsd:string

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix tool: <https://unifiedcyberontology.org/ontology/uco/tool#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

tool:ToolConfigurationTypeFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "ToolConfigurationTypeFacet"@en ;
    rdfs:comment "A tool configuration type facet is a grouping of characteristics unique to the instantial settings and setup of a tool."@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class tool:DependencyType ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path tool:dependencies ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path tool:usageContextAssumptions ] ;
    sh:targetClass tool:ToolConfigurationTypeFacet .