Ontology Version: 2.2.0

cacontology-platforms:LegalComplianceValidationShape leaf node


URI

https://cacontology.projectvic.org/platforms#LegalComplianceValidationShape

Label

Legal Compliance Validation Shape

Description

Validates legal compliance capabilities for service providers.

Shape Properties

Instances of cacontology-platforms:ElectronicServiceProvider can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-platforms:ElectronicServiceProvider
cacontology-platforms:acceptsLegalProcess 0 1 xsd:boolean
cacontology-platforms:emergencyDisclosureCapable 0 1 xsd:boolean
cacontology-platforms:headquarteredIn 0 1 xsd:string
cacontology-platforms:operatesInJurisdiction 0 10 xsd:string
1 1 xsd:string

Implementation

@prefix cacontology-platforms: <https://cacontology.projectvic.org/platforms#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-platforms:LegalComplianceValidationShape a sh:NodeShape ;
    rdfs:label "Legal Compliance Validation Shape"@en ;
    rdfs:comment "Validates legal compliance capabilities for service providers."@en ;
    sh:sparql [ sh:message "Service providers that accept legal process should have contact information."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-platforms:acceptsLegalProcess true .
                FILTER NOT EXISTS {
                    $this cacontology-platforms:legalProcessContactInfo ?contact .
                }
            }
        """ ] ;
    sh:targetClass cacontology-platforms:ElectronicServiceProvider .