Skip to main content

Object Snapshot

This schema builds on the following shared schemas:

PropertyTypeRequiredNote
channel_idIntegerYesUniquely identifies a source within a single device, for example, a video or radar sensor
classObjectClassNoClassification of the detected object in the snapshot (e.g., person, vehicle)
crop_boxBoundingBoxYesNormalized bounding box of the region captured in data, relative to the source image
dataStringYesBase64-encoded raster image bytes (e.g., JPEG or PNG)
idIDYesGlobally unique identifier
object_track_idIDYesReference to an object track
timestampFloatYesTime of image capture

Example

{
"crop_box": {
"bottom": 0.5468,
"left": 0.193,
"right": 0.2712,
"top": 0.4739
},
"channel_id": 1,
"data": "<base-64 encoded image>",
"id": "57fcc8fe-a555-4905-bce1-dbcc7fb400d5",
"object_track_id": "ad57dd04-cbe5-44df-8de3-222d1d33c3e9",
"timestamp": "1984-02-06T20:17:41.551914Z"
}