https://cacontology.projectvic.org/production#ImagePostProcessingShape
Validation shape for image post-processing instances.
@prefix cacontology-production: <https://cacontology.projectvic.org/production#> .
@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-production:ImagePostProcessingShape a sh:NodeShape ;
rdfs:label "Image Post-Processing Shape"@en ;
rdfs:comment "Validation shape for image post-processing instances."@en ;
sh:property [ sh:datatype xsd:nonNegativeInteger ;
sh:maxCount 1 ;
sh:maxInclusive 1000 ;
sh:message "Image post-processing must specify modification count between 1 and 1000."@en ;
sh:minCount 1 ;
sh:minInclusive 1 ;
sh:path cacontology-production:modificationCount ],
[ sh:datatype xsd:string ;
sh:maxCount 1 ;
sh:maxLength 100 ;
sh:message "Modification software must be specified (2-100 characters)."@en ;
sh:minCount 1 ;
sh:minLength 2 ;
sh:path cacontology-production:modificationSoftware ] ;
sh:targetClass cacontology-production:ImagePostProcessing .