Ontology Version: 2.3.0

cacontology-undercover:SiblingPersonaOperationShape leaf node


URI

https://cacontology.projectvic.org/undercover#SiblingPersonaOperationShape

Label

Sibling Persona Operation Shape

Description

Validation shape for undercover operations using related sibling personas.

Shape Properties

Instances of cacontology-undercover:SiblingPersonaOperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-undercover:SiblingPersonaOperation
cacontology-undercover:siblingRelationship 0 1 xsd:string
cacontology-undercover:MultiplePersonaOperation
cacontology-undercover:personaCount 0 1 xsd:nonNegativeInteger
cacontology-undercover:primaryPersonaAge 0 1 xsd:nonNegativeInteger
cacontology-undercover:secondaryPersonaAge 0 1 xsd:nonNegativeInteger

Implementation

@prefix cacontology-undercover: <https://cacontology.projectvic.org/undercover#> .
@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-undercover:SiblingPersonaOperationShape a sh:NodeShape ;
    rdfs:label "Sibling Persona Operation Shape"@en ;
    rdfs:comment "Validation shape for undercover operations using related sibling personas."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "sisters" "brothers" "brother_sister" "sister_brother" ) ;
            sh:maxCount 1 ;
            sh:message "Sibling relationship must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-undercover:siblingRelationship ] ;
    sh:targetClass cacontology-undercover:SiblingPersonaOperation .