observable:RasterPictureFacet leaf node


URI

https://unifiedcyberontology.org/ontology/uco/observable#RasterPictureFacet

Label

RasterPictureFacet

Description

A raster picture facet is a grouping of characteristics unique to a raster (or bitmap) image.

Superclasses (1)

Shape Properties

Instances of observable:RasterPictureFacet can have the following properties:

PROPERTY

PROPERTY TYPE

DESCRIPTION

MIN COUNT

MAX COUNT

VALUE CONSTRAINTS

LOCAL TYPE
(type defined for property on this class)

GLOBAL RANGE
(type range for property globally)

observable:RasterPictureFacet
observable:bitsPerPixel owl:DatatypeProperty
0 1
xsd:integer
xsd:integer
observable:camera owl:ObjectProperty The name/make of the camera that was used for taking the picture.
0 1
observable:ObservableObject
observable:ObservableObject
observable:imageCompressionMethod owl:DatatypeProperty
0 1
xsd:string
xsd:string
observable:pictureHeight owl:DatatypeProperty
0 1
xsd:integer
xsd:integer
observable:pictureType owl:DatatypeProperty The type of a picture, for example a thumbnail.
0 1
xsd:string
xsd:string
observable:pictureWidth owl:DatatypeProperty The width of the picture in pixels.
0 1
xsd:integer
xsd:integer

Implementation

@prefix core: <https://unifiedcyberontology.org/ontology/uco/core#> .
@prefix observable: <https://unifiedcyberontology.org/ontology/uco/observable#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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#> .

observable:RasterPictureFacet a owl:Class,
        sh:NodeShape ;
    rdfs:label "RasterPictureFacet"@en ;
    rdfs:comment "A raster picture facet is a grouping of characteristics unique to a raster (or bitmap) image."@en ;
    rdfs:subClassOf core:Facet ;
    sh:property [ sh:class observable:ObservableObject ;
            sh:maxCount 1 ;
            sh:nodeKind sh:BlankNodeOrIRI ;
            sh:path observable:camera ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:bitsPerPixel ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pictureHeight ],
        [ sh:datatype xsd:integer ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pictureWidth ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:imageCompressionMethod ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:nodeKind sh:Literal ;
            sh:path observable:pictureType ] ;
    sh:targetClass observable:RasterPictureFacet .