Image annotation - JSON
  • 13 Mar 2025
  • Dark
    Light
  • PDF

Image annotation - JSON

  • Dark
    Light
  • PDF

Article summary

Each entity in our system has a JSON code that represents its data within our system.

Read here about downloading the JSON file of an item’s annotations.

This JSON code includes the entity's data related to our software and its metadata.


Image JSON Format

{
	"annotations": [
		{
  "id": "67ceef3bb37fa82ff71ba563",
  "datasetId": "67ceef0416595b6856e210e0",
  "url": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
  "dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
  "createdAt": "2025-03-10T13:55:07.498Z",
  "dir": "/",
  "filename": "/images.png",
  "type": "file",
  "hidden": false,
  "metadata": {
    "system": {
      "channels": 3,
      "encoding": "7bit",
      "height": 480,
      "isBinary": true,
      "mimetype": "image/jpeg",
      "originalname": "images.png",
      "refs": [],
      "size": 24018,
      "taskStatusLog": [],
      "thumbnailId": "67ceef3f20b914f28531df74",
      "width": 640
    }
  },
  "name": "images.png",
  "creator": "user@dataloop.ai",
  "updatedAt": "2025-03-10T13:55:11.205Z",
  "updatedBy": "user@dataloop.ai",
  "stream": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563/stream",
  "thumbnail": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563/thumbnail",
  "annotations": [
    {
      "id": "67ceef62995ecd2df020d514",
      "datasetId": "67ceef0416595b6856e210e0",
      "itemId": "67ceef3bb37fa82ff71ba563",
      "url": "https://gate.dataloop.ai/api/v1/annotations/67ceef62995ecd2df020d514",
      "item": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
      "dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
      "type": "class",
      "label": "Bird-1",
      "attributes": [],
      "metadata": {
        "system": {
          "attributes": {},
          "automated": false,
          "clientId": "4e3b6a65-40f4-4ffc-9f63-22199922b8db",
          "endFrame": 0,
          "endTime": 0,
          "frame": 0,
          "itemLinks": [],
          "objectId": "1",
          "openAnnotationVersion": "1.91.1-prod.3",
          "recipeId": "64b4d4652679f454253ffddb",
          "snapshots_": [],
          "startTime": 0,
          "system": false
        },
        "user": {}
      },
      "creator": "user@dataloop.ai",
      "createdAt": "2025-03-10T13:55:46.394Z",
      "updatedBy": "user@dataloop.ai",
      "updatedAt": "2025-03-10T13:55:46.394Z",
      "hash": "824c48b05a2eb5caf95090121db2c11f4d83b5ce",
      "source": "ui"
    },
    {
      "id": "67ceef62995ecd68f320d515",
      "datasetId": "67ceef0416595b6856e210e0",
      "itemId": "67ceef3bb37fa82ff71ba563",
      "url": "https://gate.dataloop.ai/api/v1/annotations/67ceef62995ecd68f320d515",
      "item": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
      "dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
      "type": "box",
      "label": "Bird-1",
      "attributes": [],
      "coordinates": [
        {
          "x": 51.09,
          "y": 127.96,
          "z": 0
        },
        {
          "x": 464.82000000000005,
          "y": 376.36,
          "z": 0
        }
      ],
      "metadata": {
        "system": {
          "attributes": {
            "1": "No"
          },
          "automated": false,
          "clientId": "2bfa1965-9482-4cb0-8a6f-c151ef7b6535",
          "coordinateVersion": "v2",
          "endFrame": 0,
          "endTime": 0,
          "frame": 0,
          "itemLinks": [],
          "objectId": "2",
          "openAnnotationVersion": "1.91.1-prod.3",
          "recipeId": "64b4d4652679f454253ffddb",
          "snapshots_": [],
          "startTime": 0,
          "system": false
        },
        "user": {}
      },
      "creator": "user@dataloop.ai",
      "createdAt": "2025-03-10T13:55:46.394Z",
      "updatedBy": "user@dataloop.ai",
      "updatedAt": "2025-03-10T13:55:46.394Z",
      "hash": "304f3b1f01262e17a862d98a745a47cde8b90504",
      "source": "ui"
    }
  ],
  "annotationsCount": 2,
  "annotated": true
}]
}

Image JSON Fields Description

Key NameDefinitionParent Key
idUnique identifier for the itemRoot
datasetIdUnique identifier for the datasetRoot
urlURL to access the itemRoot
datasetURL to access the datasetRoot
createdAtTimestamp when the item was createdRoot
dirDirectory path of the itemRoot
filenameName of the fileRoot
typeType of the item (e.g., file)Root
hiddenBoolean indicating if the item is hiddenRoot
metadataMetadata associated with the itemRoot
metadata.systemSystem-level metadatametadata
channelsNumber of color channels in the imagemetadata.system
encodingEncoding type of the filemetadata.system
heightHeight of the image in pixelsmetadata.system
isBinaryBoolean indicating if the file is binarymetadata.system
mimetypeMIME type of the filemetadata.system
originalnameOriginal name of the filemetadata.system
refsList of reference itemsmetadata.system
sizeSize of the file in bytesmetadata.system
taskStatusLogLog of task statusesmetadata.system
thumbnailIdUnique identifier for the thumbnailmetadata.system
widthWidth of the image in pixelsmetadata.system
nameName of the itemRoot
creatorCreator of the itemRoot
updatedAtTimestamp when the item was last updatedRoot
updatedByUser who last updated the itemRoot
streamURL to stream the imageRoot
thumbnailURL to the thumbnail imageRoot
annotationsList of annotations for the itemRoot
annotations.idUnique identifier for the annotationannotations[]
annotations.datasetIdDataset ID associated with the annotationannotations[]
annotations.itemIdItem ID the annotation belongs toannotations[]
annotations.urlURL to access the annotationannotations[]
annotations.itemURL to the annotated itemannotations[]
annotations.datasetURL to the dataset of the annotationannotations[]
annotations.typeType of annotation (e.g., class, box)annotations[]
annotations.labelLabel of the annotationannotations[]
annotations.attributesList of attributes associated with the annotationannotations[]
coordinatesList of coordinate points for the annotationannotations[]
coordinates.xX-coordinate of the annotation pointcoordinates
coordinates.yY-coordinate of the annotation pointcoordinates
coordinates.zZ-coordinate of the annotation point (depth, if applicable)coordinates
annotations.metadataMetadata related to the annotationannotations[]
metadata.systemSystem-related metadata for the annotationannotations.metadata
attributesAttributes related to the annotationmetadata.system
automatedBoolean indicating if the annotation was generated automaticallymetadata.system
clientIdClient identifiermetadata.system
coordinateVersionVersion of the coordinate system usedmetadata.system
endFrameEnd frame of the annotationmetadata.system
endTimeEnd time of the annotation (in seconds)metadata.system
frameFrame number of the annotationmetadata.system
itemLinksList of linked itemsmetadata.system
objectIdObject ID associated with the annotationmetadata.system
openAnnotationVersionVersion of the annotation toolmetadata.system
recipeIdRecipe ID used for annotationmetadata.system
snapshots_Snapshots related to the annotationmetadata.system
startTimeStart time of the annotation (in seconds)metadata.system
systemBoolean indicating if it's a system annotationmetadata.system
userUser-related metadatametadata
creatorUser who created the annotationannotations[]
createdAtTimestamp when the annotation was createdannotations[]
updatedByUser who last updated the annotationannotations[]
updatedAtTimestamp when the annotation was last updatedannotations[]
hashHash value associated with the annotationannotations[]
sourceSource of the annotation (e.g., UI)annotations[]
annotationsCountTotal count of annotationsRoot
annotatedBoolean indicating if the item is annotatedRoot