https://ontology.unifiedcyberontology.org/uco/observable/RasterPictureFacet
A raster picture facet is a grouping of characteristics unique to a raster (or bitmap) image.
Instances of observable:RasterPictureFacet can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|---|---|---|
From class owl:Thing | |||
types:threadNextItem | owl:ObjectProperty | The link to a next item in a thread. | owl:Thing |
types:threadPreviousItem | owl:ObjectProperty | A direct link to a previous item in a thread. | owl:Thing |
By the associated SHACL property shapes, instances of observable:RasterPictureFacet can have the following properties:
PROPERTY |
PROPERTY TYPE |
DESCRIPTION |
MIN COUNT |
MAX COUNT |
LOCAL RANGE |
GLOBAL RANGE |
|
---|---|---|---|---|---|---|---|
observable:RasterPictureFacet | |||||||
observable:bitsPerPixel | owl:DatatypeProperty |
|
1 |
xsd:integer
|
xsd:integer
|
||
observable:camera | owl:ObjectProperty |
The name/make of the camera that was used for taking the picture.
|
1 |
observable:ObservableObject
|
observable:ObservableObject
|
||
observable:imageCompressionMethod | owl:DatatypeProperty |
|
1 |
xsd:string
|
xsd:string
|
||
observable:pictureHeight | owl:DatatypeProperty |
|
1 |
xsd:integer
|
xsd:integer
|
||
observable:pictureType | owl:DatatypeProperty |
The type of a picture, for example a thumbnail.
|
1 |
xsd:string
|
xsd:string
|
||
observable:pictureWidth | owl:DatatypeProperty |
The width of the picture in pixels.
|
1 |
xsd:integer
|
xsd:integer
|
@prefix core: <https://ontology.unifiedcyberontology.org/uco/core/> .
@prefix observable: <https://ontology.unifiedcyberontology.org/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:IRI ;
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 .