Ontology Version: 2.2.0

cacontology-infrastructure:EncryptionInfrastructureShape leaf node


URI

https://cacontology.projectvic.org/infrastructure#EncryptionInfrastructureShape

Label

Encryption Infrastructure Shape

Description

Validation shape for encryption infrastructure instances.

Shape Properties

Instances of cacontology-infrastructure:EncryptionInfrastructure can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-infrastructure:EncryptionInfrastructure
cacontology-infrastructure:encryptionStrength 0 1 xsd:string
cacontology-infrastructure:SecurityInfrastructure
cacontology-infrastructure:hasAnonymityEffectiveness 1 xsd:double
cacontology-infrastructure:hasObfuscationComplexity 1 xsd:string
cacontology-infrastructure:hasSecurityStrength 1 xsd:string
cacontology-infrastructure:obfuscationMethods 0 10 xsd:string
cacontology-infrastructure:PlatformInfrastructure
cacontology-infrastructure:hasInfrastructureBeginPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasInfrastructureEndPoint 1 xsd:dateTimeStamp
cacontology-infrastructure:hasInfrastructurePerformance 1 xsd:string
cacontology-infrastructure:hasInfrastructureReliability 1 xsd:double
cacontology-infrastructure:hasInfrastructureScalability 1 xsd:string
cacontology-infrastructure:hasInfrastructureVulnerability 1 xsd:string
0 1 xsd:string

Implementation

@prefix cacontology-infrastructure: <https://cacontology.projectvic.org/infrastructure#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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#> .
cacontology-infrastructure:EncryptionInfrastructureShape a sh:NodeShape ;
    rdfs:label "Encryption Infrastructure Shape"@en ;
    rdfs:comment "Validation shape for encryption infrastructure instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "AES-128" "AES-256" "RSA-2048" "RSA-4096" "ChaCha20" "Blowfish" "3DES" "custom" ) ;
            sh:maxCount 1 ;
            sh:message "Encryption strength must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-infrastructure:encryptionStrength ] ;
    sh:targetClass cacontology-infrastructure:EncryptionInfrastructure .