core:UcoType


URI

https://ontology.unifiedcyberontology.org/uco/core/UcoType

Label

UcoType

Description

UcoType is the top-level class for metaclasses within UCO. An instance of core:UcoType is also an instance of owl:Class, and is or specializes core:UcoThing.

Target Classes (1)

Shape Properties

Instances of core:UcoType can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@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#> .

core:UcoType a owl:Class,
        sh:NodeShape ;
    rdfs:label "UcoType"@en ;
    rdfs:comment "UcoType is the top-level class for metaclasses within UCO.  An instance of core:UcoType is also an instance of owl:Class, and is or specializes core:UcoThing."@en ;
    rdfs:subClassOf owl:Thing ;
    owl:disjointWith core:UcoThing ;
    sh:class owl:Class ;
    sh:property [ sh:hasValue core:UcoThing ;
            sh:path [ sh:zeroOrMorePath rdfs:subClassOf ] ] ;
    sh:targetClass core:UcoType .