Ontology Version: 2.2.0

cacontology-partnerships-shapes:TechnicalIntegrationShape leaf node


URI

https://cacontology.projectvic.org/partnerships/shapes#TechnicalIntegrationShape

Label

Technical Integration Shape

Description

Validation shape for technical integration instances.

Shape Properties

Instances of cacontology-partnerships:TechnicalIntegration can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/shapes#> .
@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-partnerships-shapes:TechnicalIntegrationShape a sh:NodeShape ;
    rdfs:label "Technical Integration Shape"@en ;
    rdfs:comment "Validation shape for technical integration instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "manual" "semi_automated" "fully_automated" ) ;
            sh:maxCount 1 ;
            sh:message "Automation level must be from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-partnerships:automationLevel ] ;
    sh:targetClass cacontology-partnerships:TechnicalIntegration .