types:ImproperDictionary leaf node


URI

https://ontology.unifiedcyberontology.org/uco/types/ImproperDictionary

Label

ImproperDictionary

Target Classes (1)

Shape Properties

Instances of types:ImproperDictionary can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

types:ImproperDictionary
types:repeatsKey xsd:string
types:Dictionary
types:entry types:DictionaryEntry

Implementation

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

types:ImproperDictionary a owl:Class,
        sh:NodeShape ;
    rdfs:label "ImproperDictionary"@en ;
    rdfs:subClassOf types:Dictionary ;
    owl:disjointWith types:ProperDictionary ;
    sh:property [ sh:datatype xsd:string ;
            sh:nodeKind sh:Literal ;
            sh:path types:repeatsKey ] ;
    sh:targetClass types:ImproperDictionary .