configuration:Configuration leaf node


URI

https://ontology.unifiedcyberontology.org/uco/configuration/Configuration

Label

Configuration

Description

A configuration is a grouping of characteristics unique to a set of parameters or initial settings for the use of a tool, application, software, or other cyber object.

Superclasses (2)

Target Classes (1)

Shape Properties

Instances of configuration:Configuration can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

configuration:Configuration
configuration:configurationEntry configuration:ConfigurationEntry
configuration:dependencies configuration:Dependency
configuration:usageContextAssumptions xsd:string
core:UcoObject
core:createdBy 1 core:IdentityAbstraction
core:description xsd:string
core:externalReference 0 core:ExternalReference
core:hasFacet core:Facet
core:modifiedTime xsd:dateTime
core:name 1 xsd:string
core:objectCreatedTime 1 xsd:dateTime
core:objectMarking core:MarkingDefinitionAbstraction
core:specVersion 1 xsd:string
core:tag xsd:string

Implementation

@prefix configuration: <https://ontology.unifiedcyberontology.org/uco/configuration/> .
@prefix core: <https://ontology.unifiedcyberontology.org/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 xsd: <http://www.w3.org/2001/XMLSchema#> .

configuration:Configuration a owl:Class,
        sh:NodeShape ;
    rdfs:label "Configuration"@en ;
    rdfs:comment "A configuration is a grouping of characteristics unique to a set of parameters or initial settings for the use of a tool, application, software, or other cyber object."@en ;
    rdfs:seeAlso <https://github.com/ucoProject/UCO/issues/432> ;
    rdfs:subClassOf core:UcoObject ;
    sh:property [ sh:class configuration:ConfigurationEntry ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path configuration:configurationEntry ],
        [ sh:class configuration:Dependency ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path configuration:dependencies ],
        [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path configuration:usageContextAssumptions ] ;
    sh:targetClass configuration:Configuration .