Ontology Version: 2.2.0

cacontology-infrastructure-shapes:StrongSecurityRule leaf node


URI

https://cacontology.projectvic.org/infrastructure/shapes#StrongSecurityRule

Label

Strong Security Rule

Description

Advanced gUFO business rule: Strong security requires advanced obfuscation and high anonymity effectiveness.

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 cacontology-infrastructure-shapes: <https://cacontology.projectvic.org/infrastructure/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-infrastructure-shapes:StrongSecurityRule a sh:NodeShape ;
    rdfs:label "Strong Security Rule"@en ;
    rdfs:comment "Advanced gUFO business rule: Strong security requires advanced obfuscation and high anonymity effectiveness."@en ;
    sh:sparql [ sh:message "Strong or military-grade security must have advanced obfuscation and high anonymity effectiveness (gUFO business rule)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-infrastructure:hasSecurityStrength ?strength .
                FILTER (?strength IN ("strong", "military_grade"))
                {
                    FILTER NOT EXISTS {
                        $this cacontology-infrastructure:hasObfuscationComplexity ?complexity .
                        FILTER (?complexity IN ("advanced", "sophisticated", "cutting_edge"))
                    }
                } UNION {
                    FILTER NOT EXISTS {
                        $this cacontology-infrastructure:hasAnonymityEffectiveness ?effectiveness .
                        FILTER (?effectiveness >= 0.7)
                    }
                }
            }
        """ ] ;
    sh:targetClass cacontology-infrastructure:SecurityInfrastructure .