pattern:LogicalPattern leaf node


URI

https://ontology.unifiedcyberontology.org/uco/pattern/LogicalPattern

Label

LogicalPattern

Description

A logical pattern is a grouping of characteristics unique to an informational pattern expressed via a structured pattern expression following the rules of logic.

Target Classes (1)

Shape Properties

Instances of pattern:LogicalPattern can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

pattern:LogicalPattern
pattern:patternExpression 1 pattern:PatternExpression
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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix pattern: <https://ontology.unifiedcyberontology.org/uco/pattern/> .
@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#> .

pattern:LogicalPattern a owl:Class,
        sh:NodeShape ;
    rdfs:label "LogicalPattern"@en ;
    rdfs:comment "A logical pattern is a grouping of characteristics unique to an informational pattern expressed via a structured pattern expression following the rules of logic."@en ;
    rdfs:subClassOf pattern:Pattern ;
    sh:property [ sh:datatype pattern:PatternExpression ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path pattern:patternExpression ] ;
    sh:targetClass pattern:LogicalPattern .