:RawImageShape leaf node


URI

https://ontology.solveit-df.org/solveit/observable/shapes/RawImageShape

Label

Raw Image Shape

Description

Validates that a RawImage contains a Bitstream.

Target Classes (1)

Shape Properties

Instances of solveit-observable:RawImage can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

solveit-observable:RawImage
solveit-observable:contains 1 solveit-observable:Bitstream

Implementation

@prefix : <https://ontology.solveit-df.org/solveit/observable/shapes/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix solveit-observable: <https://ontology.solveit-df.org/solveit/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:RawImageShape a sh:NodeShape ;
    rdfs:label "Raw Image Shape"@en ;
    rdfs:comment "Validates that a RawImage contains a Bitstream."@en ;
    sh:property [ sh:class solveit-observable:Bitstream ;
            sh:message "contains must reference at least one Bitstream instance"@en ;
            sh:minCount 1 ;
            sh:path solveit-observable:contains ] ;
    sh:targetClass solveit-observable:RawImage .