Ontology Version: 2.2.0

cacontology-infrastructure:SecurityConsistencyValidationShape leaf node


URI

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

Label

Security Consistency Validation Shape

Description

Validates security infrastructure consistency.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-infrastructure:SecurityConsistencyValidationShape a sh:NodeShape ;
    rdfs:label "Security Consistency Validation Shape"@en ;
    rdfs:comment "Validates security infrastructure consistency."@en ;
    sh:sparql [ sh:message "High-anonymity infrastructure should use appropriate obfuscation methods."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-infrastructure:AnonymityInfrastructure ;
                      cacontology-infrastructure:anonymityLevel "military-grade" .
                FILTER NOT EXISTS {
                    $this cacontology-infrastructure:obfuscationMethods ?method .
                    FILTER (?method IN ("Tor", "VPNs", "domain_fronting"))
                }
            }
        """ ] ;
    sh:targetClass cacontology-infrastructure:SecurityInfrastructure .