Ontology Version: 2.2.0

cacontology-enterprises:EncryptedChannelNetworkShape leaf node


URI

https://cacontology.projectvic.org/extremist-enterprises#EncryptedChannelNetworkShape

Label

EncryptedChannelNetworkShape

Shape Properties

Instances of cacontology-enterprises:EncryptedChannelNetwork can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-enterprises:EncryptedChannelNetwork
cacontology-enterprises:channelCount 1 xsd:nonNegativeInteger
cacontology-enterprises:encryptionLevel 1 xsd:string
cacontology-enterprises:hasEncryptionCapability 1 gufo:IntrinsicMode

Implementation

@prefix cacontology-enterprises: <https://cacontology.projectvic.org/extremist-enterprises#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-enterprises:EncryptedChannelNetworkShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "basic" "strong" "military_grade" ) ;
            sh:maxCount 1 ;
            sh:message "Encryption level must be valid level."@en ;
            sh:path cacontology-enterprises:encryptionLevel ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:maxInclusive 100 ;
            sh:message "Encrypted network must have 1-100 channels."@en ;
            sh:minInclusive 1 ;
            sh:path cacontology-enterprises:channelCount ] ;
    sh:targetClass cacontology-enterprises:EncryptedChannelNetwork .