Instance Segmentation - JSON
  • 10 Mar 2025
  • Dark
    Light
  • PDF

Instance Segmentation - JSON

  • Dark
    Light
  • PDF

Article summary

Overview

This page describes Instance Segmentation Annotation JSON, a data format for describing Instance Segmentation Annotation data in JavaScript Object Notation (JSON).

For more information, see the Instance Segmentation Studio.

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


Instance segmentation annotation JSON

{
"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": "67cf1a8415680d49f21d7f8d",
      "datasetId": "67ceef0416595b6856e210e0",
      "itemId": "67ceef3bb37fa82ff71ba563",
      "url": "https://gate.dataloop.ai/api/v1/annotations/67cf1a8415680d49f21d7f8d",
      "item": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
      "dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
      "type": "binary",
      "label": "Bird-1",
      "attributes": [],
      "coordinates": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAAAXNSR0IArs4c6QAAIABJREFUeF7t3e1y3cYRBFD6/R/aKcpmRMmkLj5mFrvbJ38F4GLONLIducr5681/CBAgQIAAAQIEogT+iprWsA...........xIdxAAAAAElFTkSuQmCC",
      "metadata": {
        "system": {
          "attributes": {
            "1": "No"
          },
          "automated": false,
          "clientId": "4a3f3b7f-74cd-41d7-98c6-1c4aa17c85a5",
          "endFrame": 1,
          "endTime": 0,
          "frame": 0,
          "isOnlyLocal": false,
          "isOpen": false,
          "itemLinks": [],
          "objectId": 1,
          "openAnnotationVersion": "1.91.1-prod.3",
          "recipeId": "64b4d4652679f454253ffddb",
          "snapshots_": [],
          "startTime": 0,
          "system": false
        },
        "user": {}
      },
      "creator": "user@dataloop.ai",
      "createdAt": "2025-03-10T16:59:48.199Z",
      "updatedBy": "user@dataloop.ai",
      "updatedAt": "2025-03-10T16:59:58.278Z",
      "hash": "67ceef0416595b6856e210e0_67ceef3bb37fa82ff71ba563_Bird-1_user@dataloop.ai_1",
      "source": "ui"
    }
  ],
  "annotationsCount": 1,
  "annotated": true
}
}


Dictionary table

Key NameDefinitionParent Key
idUnique identifier for the itemRoot
datasetIdUnique identifier for the datasetRoot
urlURL of the item in the systemRoot
datasetURL of the datasetRoot
createdAtTimestamp of 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 informationRoot
metadata.systemSystem-level metadatametadata
metadata.system.channelsNumber of color channels in the imagemetadata.system
metadata.system.encodingEncoding type of the filemetadata.system
metadata.system.heightHeight of the image in pixelsmetadata.system
metadata.system.isBinaryBoolean indicating if the file is binarymetadata.system
metadata.system.mimetypeMIME type of the imagemetadata.system
metadata.system.originalnameOriginal file namemetadata.system
metadata.system.refsReferences related to the itemmetadata.system
metadata.system.sizeSize of the file in bytesmetadata.system
metadata.system.taskStatusLogLog of task statusesmetadata.system
metadata.system.thumbnailIdUnique identifier for the thumbnail imagemetadata.system
metadata.system.widthWidth of the image in pixelsmetadata.system
nameName of the itemRoot
creatorCreator of the itemRoot
updatedAtTimestamp of when the item was last updatedRoot
updatedByUser who last updated the itemRoot
streamStream URL of the itemRoot
thumbnailThumbnail URL of the itemRoot
annotationsList of annotationsRoot
annotations.idUnique identifier for the annotationannotations
annotations.datasetIdUnique identifier for the dataset related to annotationannotations
annotations.itemIdUnique identifier for the item related to annotationannotations
annotations.urlURL of the annotationannotations
annotations.itemURL of the item related to annotationannotations
annotations.datasetURL of the dataset related to annotationannotations
annotations.typeType of annotation (e.g., binary)annotations
annotations.labelLabel assigned to the annotationannotations
annotations.attributesAdditional attributes of the annotationannotations
annotations.coordinatesEncoded segmentation mask dataannotations

What's Next