Export data from model run v2 (beta)

Export v2 gives you more flexibility and control to retrieve the most valuable information from your Model Runs. You can now select and export a subselection of the data rows of most interest based on your predefined or new parameters in the Model Run filters You can also export more detailed information about the Model run's predictions, and include or exclude relevant data row attributes in your export. We also simplified and standardized the annotation formats.

We encourage you to use exports v2 over exports v1. We are collecting feedback during this beta period. The final format of the export json is subject to minor changes until end of June, 2023. We will continue to support export v1 and its existing features.

Export fields

When you export annotations from a Model Run, the export will contain an NDJSON file where all labels on a data row will be grouped together. This structure makes it easy to include/exclude certain fields within the export. To see a sample NDJSON export, see the section on Export v2 examples.

When you request an export (via the UI or SDK), you must select to include the optional fields in order for the optional fields to appear in the export file.

📘

Predictions are now included in Model Run Export

If you have uploaded predictions to model run, they will also show up in the export file along with the data rows and model run's versioned label information.

📘

Nested classifications and frame-based classifications

The nested classifications will maintain their nested structure in export v2; video and DICOM exports will include all frame-based annotations directly in the export file.

Each data row in the NDJSON file can have the following information.

FieldDescriptionIncluded
data_rowContains the basic information of the data row:
- id
- row_data
- global_key
- data_row_details (optional, see below)
Always
details
(data row)
Contains additional details of the data row:
- dataset_id
- created_at
- updated_at
- created_by
Optional
media_attributesSee Media attributesOptional
attachmentsSee AttachmentsOptional
metadata_fieldsSee MetadataOptional
modelsContains the ID of the model in which the data row was stored.Always
<model_id>Contains the following sections, which are expanded on below:
- model_name
- model_runs
Always
model_nameName of the modelAlways
model_runsContains the ID of the model run in which the data row was stored.Always
<model_run_id>Contains the following sections, which are expanded on below:
- model_run_name
- annotation_group_id
- labels
- predictions
Always
model_run_nameName of the model runAlways
annotation_group_idModel Run Data Row id, similar to data_row_id but in a Model Run's contextAlways
labelsContains a list of labels attached to this data row versioned in this model run
- label_kind
- version
- id
- annotations
Always
predictionsContains a list of predictions attached to this data row:
- label_kind
- version
- id
- annotations
Optional

Export v2 examples

{
  "data_row": {
    "id": "<id>",
    "external_id": "<id>",
    "global_key": "<id>",
    "row_data": "<url>",
    "details": {
      "dataset_id": "<id>",
      "created_at": "<time>",
      "updated_at": "<time>",
      "created_by": "<email>"
    }
  },
  "media_attributes": {},
  "attachments": [],
  "metadata_fields": [],
  "models": {
    "<model_id>": {
      "model_name": "",
      "model_runs": {
        "<model_run_id>": {
          "model_run_name": "",
          "annotation_group_id": "<id>",
          "labels": [
            {
              "label_kind": "",
              "version": "1.0.0",
              "id": "<id>",
              "annotations": {
                "objects": [],
                "classifications": [],
                "relationships": []
              }
            }
          ],
          "predictions": [
            {
              "label_kind": "",
              "version": "1.0.0",
              "id": "<id>",
              "annotations": {
                "objects": [],
                "classifications": [],
                "relationships": []
              }
            }
          ]
        }
      }
    }
  }
}
{
  "data_row": {
    "id": "cldw8hs6l1ii9070lcysma1zk",
    "global_key": "5e3648e7-a888-4f03-b3e6-b277d42a795a",
    "row_data": "https://storage.googleapis.com/labelbox-datasets/image_sample_data/2560px-Kitano_Street_Kobe01s5s4110.jpeg",
    "details": {
      "dataset_id": "cldw8hrhr1r6107xz65bxd2ah",
      "created_at": "2023-02-08",
      "updated_at": "2023-02-08",
      "created_by": "[email protected]"
    }
  },
  "media_attributes": {
    "height": 1707,
    "width": 2560,
    "mime_type": "image/jpeg"
  },
  "attachments": [],
  "metadata_fields": [],
  "models": {
    "a08c8320-f6da-01c7-ddfc-440ea660acc2": {
      "model_name": "image_model_run_748bf36b-5bac-4d5a-8511-a8d8a22f1398",
      "model_runs": {
        "a08c8321-3e07-06d8-43d2-a26ce0d9862c": {
          "model_run_name": "iteration 1",
          "annotation_group_id": "78e2c7ca-eaba-48da-b582-a1fe5565dea1",
          "labels": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldw8i75c000m13vuk7xzvtho",
              "annotations": {
                "objects": [
                  {
                    "feature_id": "4a4ae9b1-df44-4551-8303-67b1fee61c14",
                    "name": "bbox_with_radio_subclass",
                    "annotation_kind": "ImageBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "a98ec212-d2d2-4ca4-8648-595e2470c7a8",
                        "name": "sub_radio_question",
                        "radio_answer": {
                          "feature_id": "43868193-a513-4287-a2fb-ac7f62f09148",
                          "name": "first_sub_radio_answer",
                          "classifications": []
                        }
                      }
                    ],
                    "bounding_box": {
                      "top": 933,
                      "left": 541,
                      "height": 191,
                      "width": 330
                    }
                  },
                  {
                    "feature_id": "6d059ab4-a0e1-4b6a-ba69-9d28bd111274",
                    "name": "polygon",
                    "annotation_kind": "ImagePolygon",
                    "classifications": [],
                    "polygon": [
                      {
                        "x": 1489.581,
                        "y": 183.934
                      },
                      {
                        "x": 2278.306,
                        "y": 256.885
                      },
                      {
                        "x": 2428.197,
                        "y": 200.437
                      },
                      {
                        "x": 2560,
                        "y": 335.419
                      },
                      {
                        "x": 2557.386,
                        "y": 503.165
                      },
                      {
                        "x": 2320.596,
                        "y": 503.103
                      },
                      {
                        "x": 2156.083,
                        "y": 628.943
                      },
                      {
                        "x": 2161.111,
                        "y": 785.519
                      },
                      {
                        "x": 2002.115,
                        "y": 894.647
                      },
                      {
                        "x": 1838.456,
                        "y": 877.874
                      },
                      {
                        "x": 1436.53,
                        "y": 874.636
                      },
                      {
                        "x": 1411.403,
                        "y": 758.579
                      },
                      {
                        "x": 1353.853,
                        "y": 751.74
                      },
                      {
                        "x": 1345.264,
                        "y": 453.461
                      },
                      {
                        "x": 1426.011,
                        "y": 421.129
                      },
                      {
                        "x": 1489.581,
                        "y": 183.934
                      }
                    ]
                  },
                  {
                    "feature_id": "844936f6-6dc8-44fe-8305-376a9e663946",
                    "name": "bounding_box",
                    "annotation_kind": "ImageBoundingBox",
                    "classifications": [],
                    "bounding_box": {
                      "top": 977,
                      "left": 1690,
                      "height": 330,
                      "width": 225
                    }
                  },
                  {
                    "feature_id": "9af7a10a-d84d-4f63-a2cb-87ca55f407d7",
                    "name": "point",
                    "annotation_kind": "ImagePoint",
                    "classifications": [],
                    "point": {
                      "x": 1166.606,
                      "y": 1441.768
                    }
                  },
                  {
                    "feature_id": "a51c0659-5a29-4c09-a1ec-1bcb259b0439",
                    "name": "mask",
                    "annotation_kind": "ImageSegmentationMask",
                    "classifications": [],
                    "mask": {
                      "url": "https://api.labelbox.com/api/v1/models/a08c8320-f6da-01c7-ddfc-440ea660acc2/annotations/a51c0659-5a29-4c09-a1ec-1bcb259b0439/mask"
                    }
                  },
                  {
                    "feature_id": "ae445b95-d532-4bf8-926d-a213c50899c6",
                    "name": "polyline",
                    "annotation_kind": "ImageLine",
                    "classifications": [],
                    "line": [
                      {
                        "x": 2534.353,
                        "y": 249.471
                      },
                      {
                        "x": 2429.492,
                        "y": 182.092
                      },
                      {
                        "x": 2294.322,
                        "y": 221.962
                      },
                      {
                        "x": 2224.491,
                        "y": 180.463
                      },
                      {
                        "x": 2136.123,
                        "y": 204.716
                      },
                      {
                        "x": 1712.247,
                        "y": 173.949
                      },
                      {
                        "x": 1703.838,
                        "y": 84.438
                      },
                      {
                        "x": 1579.772,
                        "y": 82.61
                      },
                      {
                        "x": 1583.442,
                        "y": 167.552
                      },
                      {
                        "x": 1478.869,
                        "y": 164.903
                      },
                      {
                        "x": 1418.941,
                        "y": 318.149
                      },
                      {
                        "x": 1243.128,
                        "y": 400.815
                      },
                      {
                        "x": 1022.067,
                        "y": 319.007
                      },
                      {
                        "x": 892.367,
                        "y": 379.216
                      },
                      {
                        "x": 670.273,
                        "y": 364.408
                      },
                      {
                        "x": 613.114,
                        "y": 288.16
                      },
                      {
                        "x": 377.559,
                        "y": 238.251
                      },
                      {
                        "x": 368.087,
                        "y": 185.064
                      },
                      {
                        "x": 246.557,
                        "y": 167.286
                      },
                      {
                        "x": 236.648,
                        "y": 285.61
                      },
                      {
                        "x": 90.929,
                        "y": 326.412
                      }
                    ]
                  }
                ],
                "classifications": [
                  {
                    "feature_id": "5236b2ae-a2bc-4db3-80db-cd6bcef3cc7b",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "c8f365a4-6cf8-4210-a27d-3fca48e7e23d",
                      "name": "second_radio_answer",
                      "classifications": []
                    }
                  },
                  {
                    "feature_id": "66595ecd-72ff-4ff1-b906-00c1a11e4614",
                    "name": "free_text",
                    "text_answer": {
                      "content": "sample text"
                    }
                  },
                  {
                    "feature_id": "824350d5-b17f-40f0-adff-87a149d2b1e4",
                    "name": "nested_radio_question",
                    "radio_answer": {
                      "feature_id": "f8933b4c-5b79-4099-b3d5-cf5296819c1f",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "a82fa120-a07b-400b-ad7d-a750f2f26632",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "cec45106-3efb-48b9-9b02-7d0a0acfce02",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "b4b2ea8f-7d2b-421e-a9ee-5c237e871a4e",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "4d686853-92a9-455a-bb24-a3f98b713423",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "9d14b980-56da-4f30-938b-6a1ccc31fcb4",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "7d3ec4d8-7baf-4e80-a3d7-cc07ae67f114",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "feature_id": "c070476e-e57a-4bec-91f3-58adab50c86b",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "45714163-42b7-41d6-a8a7-324ff45367b4",
                        "name": "first_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "71f30b0a-89e0-484e-b5ab-c835fe425c32",
                        "name": "second_checklist_answer",
                        "classifications": []
                      }
                    ]
                  }
                ],
                "relationships": []
              }
            }
          ],
          "predictions": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldw8i75c000m13vuk7xzvtho",
              "annotations": {
                "objects": [
                  {
                    "feature_id": "05969c6f-5a75-4859-a17b-bdb2fec41489",
                    "name": "bounding_box",
                    "annotation_kind": "ImageBoundingBox",
                    "classifications": [],
                    "bounding_box": {
                      "top": 977,
                      "left": 1690,
                      "height": 330,
                      "width": 225
                    }
                  },
                  {
                    "feature_id": "49b6d892-6058-45ea-a393-39c54235d97b",
                    "name": "mask",
                    "annotation_kind": "ImageSegmentationMask",
                    "classifications": [],
                    "mask": {
                      "url": "https://api.labelbox.com/api/v1/models/a08c8320-f6da-01c7-ddfc-440ea660acc2/annotations/49b6d892-6058-45ea-a393-39c54235d97b/mask"
                    }
                  },
                  {
                    "feature_id": "dcf5eac7-a2eb-4665-8ea9-5be43690da0e",
                    "name": "polygon",
                    "annotation_kind": "ImagePolygon",
                    "classifications": [],
                    "polygon": [
                      {
                        "x": 1489.581,
                        "y": 183.934
                      },
                      {
                        "x": 2278.306,
                        "y": 256.885
                      },
                      {
                        "x": 2428.197,
                        "y": 200.437
                      },
                      {
                        "x": 2560,
                        "y": 335.419
                      },
                      {
                        "x": 2557.386,
                        "y": 503.165
                      },
                      {
                        "x": 2320.596,
                        "y": 503.103
                      },
                      {
                        "x": 2156.083,
                        "y": 628.943
                      },
                      {
                        "x": 2161.111,
                        "y": 785.519
                      },
                      {
                        "x": 2002.115,
                        "y": 894.647
                      },
                      {
                        "x": 1838.456,
                        "y": 877.874
                      },
                      {
                        "x": 1436.53,
                        "y": 874.636
                      },
                      {
                        "x": 1411.403,
                        "y": 758.579
                      },
                      {
                        "x": 1353.853,
                        "y": 751.74
                      },
                      {
                        "x": 1345.264,
                        "y": 453.461
                      },
                      {
                        "x": 1426.011,
                        "y": 421.129
                      },
                      {
                        "x": 1489.581,
                        "y": 183.934
                      }
                    ]
                  },
                  {
                    "feature_id": "f3cdd6b1-0119-4d02-8774-173ae88324be",
                    "name": "bbox_with_radio_subclass",
                    "annotation_kind": "ImageBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "84b35f92-a15e-41d1-8d2b-8f2ffc96f425",
                        "name": "sub_radio_question",
                        "radio_answer": {
                          "feature_id": "ec12a916-b9dc-4b5b-93c6-fd143c5eb724",
                          "name": "first_sub_radio_answer",
                          "classifications": []
                        }
                      }
                    ],
                    "bounding_box": {
                      "top": 933,
                      "left": 541,
                      "height": 191,
                      "width": 330
                    }
                  },
                  {
                    "feature_id": "fc343a15-e1fb-4780-93c3-14b50f8647ab",
                    "name": "point",
                    "annotation_kind": "ImagePoint",
                    "classifications": [],
                    "point": {
                      "x": 1166.606,
                      "y": 1441.768
                    }
                  },
                  {
                    "feature_id": "fcbb7514-6f61-4965-961b-5db4b9ebdeef",
                    "name": "polyline",
                    "annotation_kind": "ImageLine",
                    "classifications": [],
                    "line": [
                      {
                        "x": 2534.353,
                        "y": 249.471
                      },
                      {
                        "x": 2429.492,
                        "y": 182.092
                      },
                      {
                        "x": 2294.322,
                        "y": 221.962
                      },
                      {
                        "x": 2224.491,
                        "y": 180.463
                      },
                      {
                        "x": 2136.123,
                        "y": 204.716
                      },
                      {
                        "x": 1712.247,
                        "y": 173.949
                      },
                      {
                        "x": 1703.838,
                        "y": 84.438
                      },
                      {
                        "x": 1579.772,
                        "y": 82.61
                      },
                      {
                        "x": 1583.442,
                        "y": 167.552
                      },
                      {
                        "x": 1478.869,
                        "y": 164.903
                      },
                      {
                        "x": 1418.941,
                        "y": 318.149
                      },
                      {
                        "x": 1243.128,
                        "y": 400.815
                      },
                      {
                        "x": 1022.067,
                        "y": 319.007
                      },
                      {
                        "x": 892.367,
                        "y": 379.216
                      },
                      {
                        "x": 670.273,
                        "y": 364.408
                      },
                      {
                        "x": 613.114,
                        "y": 288.16
                      },
                      {
                        "x": 377.559,
                        "y": 238.251
                      },
                      {
                        "x": 368.087,
                        "y": 185.064
                      },
                      {
                        "x": 246.557,
                        "y": 167.286
                      },
                      {
                        "x": 236.648,
                        "y": 285.61
                      },
                      {
                        "x": 90.929,
                        "y": 326.412
                      }
                    ]
                  }
                ],
                "classifications": [
                  {
                    "feature_id": "0ba27448-8bc5-4745-94bd-99c778f3168c",
                    "name": "free_text",
                    "text_answer": {
                      "content": "sample text"
                    }
                  },
                  {
                    "feature_id": "11e26ef0-fde5-40bc-99d7-78e2874ff1ce",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "5cb8e2e4-5057-4c31-b60f-d1857c39adbc",
                      "name": "second_radio_answer",
                      "classifications": []
                    }
                  },
                  {
                    "feature_id": "120d6ef7-7d78-420c-986e-8f80c9973efb",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "16427678-a4c7-408b-bab1-86fc5f9955c4",
                        "name": "second_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "e753a2b9-a565-4785-8c66-cefd80a6999c",
                        "name": "first_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "a584a4ef-8876-4d96-9386-c5ca9064ec72",
                    "name": "nested_radio_question",
                    "radio_answer": {
                      "feature_id": "0d69b9f8-9bc6-4bc6-97ec-8e7afac44ef9",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "8c1701b2-5807-4e7e-96a2-3e7c78711602",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "0ba750f5-7ceb-4ee8-a3a4-2a1a3ffdfd0a",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "ede5db24-e7ed-4250-a1e4-0ec227c58fd0",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "340672db-03e7-4646-a5ef-21c1027c5697",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "dcff1e19-209b-4101-a27d-436dd8c84814",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "d61c28f1-872e-4ee7-9705-8f985d890aed",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ],
                "relationships": []
              }
            }
          ]
        }
      }
    }
  }
}

{
    "data_row": {
        "id": "clduj5b8103z407uqhlalhu25",
        "global_key": "84a24fab-bf79-449d-831d-b3b3002affe9",
        "row_data": "https://storage.googleapis.com/labelbox-sample-datasets/nlp/lorem-ipsum.txt",
        "details": {
            "dataset_id": "clduj5ary09eh07zsf3btbgk9",
            "created_at": "2023-02-07",
            "updated_at": "2023-02-07",
            "created_by": "[email protected]"
        }
    },
    "media_attributes": {
        "mime_type": "text/plain"
    },
    "attachments": [],
    "metadata_fields": [],
    "models": {
        "a089fc39-5fb0-0107-5948-d9963f668d76": {
            "model_name": "text_model_run_4dfb57ac-54a4-40da-89ff-b4930f388953",
            "model_runs": {
                "a089fc39-d06d-00c1-ee95-e49521276427": {
                    "model_run_name": "iteration 1",
                    "annotation_group_id": "f86738d9-3438-4b71-9625-232ff2b0009c",
                    "labels": [
                        {
                            "label_kind": "Default",
                            "version": "1.0.0",
                            "id": "cldujpk1702p113ydw8vi6qra",
                            "annotations": {
                                "objects": [
                                    {
                                        "feature_id": "79cf45ed-d0ad-4a41-a107-686de471dc6b",
                                        "name": "named_entity",
                                        "annotation_kind": "TextEntity",
                                        "classifications": [],
                                        "location": {
                                            "start": 67,
                                            "end": 128
                                        }
                                    }
                                ],
                                "classifications": [
                                    {
                                        "feature_id": "5c3d1d41-d69c-49ff-b6a7-5b8a50c45569",
                                        "name": "radio_question",
                                        "radio_answer": {
                                            "feature_id": "92ffa583-8ab8-408e-8e2d-2e600a522525",
                                            "name": "first_radio_answer",
                                            "classifications": []
                                        }
                                    },
                                    {
                                        "feature_id": "80ed4712-7ef7-454e-972c-b4db5dd62a0b",
                                        "name": "nested_checklist_question",
                                        "checklist_answers": [
                                            {
                                                "feature_id": "41a8857a-597f-490c-977e-9e2e84c184df",
                                                "name": "first_checklist_answer",
                                                "classifications": [
                                                    {
                                                        "feature_id": "2d91f11c-fdaf-40c6-893a-f1ae73d1154d",
                                                        "name": "sub_checklist_question",
                                                        "checklist_answers": [
                                                            {
                                                                "feature_id": "a0bfd338-6957-41bc-a00d-4464673aa732",
                                                                "name": "first_sub_checklist_answer",
                                                                "classifications": []
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    {
                                        "feature_id": "8d604648-cfe5-4ac9-bebc-01bf439661f4",
                                        "name": "free_text",
                                        "text_answer": {
                                            "content": "sample text"
                                        }
                                    },
                                    {
                                        "feature_id": "b2ae102b-783f-4511-a5f5-61aae62ad312",
                                        "name": "radio_question_sub",
                                        "radio_answer": {
                                            "feature_id": "18a702ed-6b88-42b8-9753-50caf990dc04",
                                            "name": "first_radio_answer",
                                            "classifications": [
                                                {
                                                    "feature_id": "4d3757b0-55b4-41ee-87c9-c7fc9b4c5342",
                                                    "name": "sub_radio_question",
                                                    "radio_answer": {
                                                        "feature_id": "380ded50-a14c-41f5-9c78-b2ed821c6163",
                                                        "name": "first_sub_radio_answer",
                                                        "classifications": []
                                                    }
                                                }
                                            ]
                                        }
                                    },
                                    {
                                        "feature_id": "ef6137ab-2c78-482c-8f59-b068ab826328",
                                        "name": "checklist_question",
                                        "checklist_answers": [
                                            {
                                                "feature_id": "160978a2-0caf-4bb2-ae74-6596cc2bcd5e",
                                                "name": "third_checklist_answer",
                                                "classifications": []
                                            },
                                            {
                                                "feature_id": "a58e3c54-26e9-4980-bd6b-8d65034bdcf7",
                                                "name": "first_checklist_answer",
                                                "classifications": []
                                            },
                                            {
                                                "feature_id": "f9b4e4b8-b8e3-468c-a404-1443d74a8b69",
                                                "name": "second_checklist_answer",
                                                "classifications": []
                                            }
                                        ]
                                    }
                                ],
                                "relationships": []
                            }
                        }
                    ],
                    "predictions": [
                        {
                            "label_kind": "Default",
                            "version": "1.0.0",
                            "id": "cldujpk1702p113ydw8vi6qra",
                            "annotations": {
                                "objects": [
                                    {
                                        "feature_id": "105b3415-7472-4427-b464-8e9fcebffee2",
                                        "name": "named_entity",
                                        "annotation_kind": "TextEntity",
                                        "classifications": [],
                                        "location": {
                                            "start": 67,
                                            "end": 128
                                        }
                                    }
                                ],
                                "classifications": [
                                    {
                                        "feature_id": "1b24162f-3b30-44db-958c-e26e7a28b961",
                                        "name": "free_text",
                                        "text_answer": {
                                            "content": "sample text"
                                        }
                                    },
                                    {
                                        "feature_id": "67e47a11-2f21-41fe-b76a-f96cca85e514",
                                        "name": "checklist_question",
                                        "checklist_answers": [
                                            {
                                                "feature_id": "f88fbf38-5e9e-49f2-b9c1-19ea610c9fcf",
                                                "name": "first_checklist_answer",
                                                "classifications": []
                                            }
                                        ]
                                    },
                                    {
                                        "feature_id": "7484bbde-7def-484b-8fcd-972bd3a2fc49",
                                        "name": "radio_question_sub",
                                        "radio_answer": {
                                            "feature_id": "f4e4e5c2-f8c8-4e16-8f03-4735544ef0d1",
                                            "name": "first_radio_answer",
                                            "classifications": [
                                                {
                                                    "feature_id": "f24fc2c3-9d94-49c2-b243-7f5a59fd72f0",
                                                    "name": "sub_radio_question",
                                                    "radio_answer": {
                                                        "feature_id": "3867c1f0-55ec-4f06-a283-b67f178248a0",
                                                        "name": "first_sub_radio_answer",
                                                        "classifications": []
                                                    }
                                                }
                                            ]
                                        }
                                    },
                                    {
                                        "feature_id": "74f40a27-64fb-4e71-a7fa-343784f3062c",
                                        "name": "nested_checklist_question",
                                        "checklist_answers": [
                                            {
                                                "feature_id": "2cd6b11f-6609-4610-8874-c977976dbbab",
                                                "name": "first_checklist_answer",
                                                "classifications": [
                                                    {
                                                        "feature_id": "c153c44a-609b-4559-826f-996195795a00",
                                                        "name": "sub_checklist_question",
                                                        "checklist_answers": [
                                                            {
                                                                "feature_id": "8286636e-7516-4681-ad2b-d414f88e0507",
                                                                "name": "first_sub_checklist_answer",
                                                                "classifications": []
                                                            }
                                                        ]
                                                    }
                                                ]
                                            }
                                        ]
                                    },
                                    {
                                        "feature_id": "d8b70c5c-622c-4abf-9c85-48639240261a",
                                        "name": "radio_question",
                                        "radio_answer": {
                                            "feature_id": "9d5dd8a1-4d4e-436a-93ab-fe8a1bd31abc",
                                            "name": "first_radio_answer",
                                            "classifications": []
                                        }
                                    }
                                ],
                                "relationships": []
                            }
                        }
                    ]
                }
            }
        }
    }
}
{
  "data_row": {
    "id": "clf16rqw80r2t07xa4oz621ly",
    "global_key": "0f78ed0f-8370-4aea-8358-de295cda0b1f",
    "row_data": "https://storage.googleapis.com/labelbox-datasets/video-sample-data/sample-video-2.mp4",
    "details": {
      "dataset_id": "clf16rp6j0qyg07zndgah3cel",
      "created_at": "2023-03-09",
      "updated_at": "2023-03-09",
      "created_by": "[email protected]"
    }
  },
  "media_attributes": {
    "height": 1080,
    "width": 1920,
    "mime_type": "video/mp4"
  },
  "attachments": [],
  "metadata_fields": [],
  "models": {
    "a0c93d8a-b749-079b-8b2b-b543bebd6320": {
      "model_name": "video_model_run_949ee446-4578-4b6c-935e-027403a55d0a",
      "model_runs": {
        "a0c93d8b-001c-0ccb-ab29-b803bf59cac8": {
          "model_run_name": "iteration 1",
          "annotation_group_id": "44d93da9-31ae-4491-954a-3c268b2c26a5",
          "labels": [
            {
              "label_kind": "Video",
              "version": "1.0.0",
              "id": "clf16sb6p184n133qbsswvlex",
              "annotations": {
                "frames": {
                  "1": {
                    "objects": {
                      "129e3efa-22f8-4399-9984-73d64843003a": {
                        "feature_id": "129e3efa-22f8-4399-9984-73d64843003a",
                        "name": "bbox_video",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "5": {
                    "objects": {
                      "129e3efa-22f8-4399-9984-73d64843003a": {
                        "feature_id": "129e3efa-22f8-4399-9984-73d64843003a",
                        "name": "bbox_video",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      },
                      "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                        "feature_id": "52fc26e7-db68-483b-a5de-bd099c6f830d",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 100
                          },
                          {
                            "x": 100,
                            "y": 190
                          },
                          {
                            "x": 190,
                            "y": 220
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "13": {
                    "objects": {
                      "3e365087-7754-4748-b3fb-66f8c7e55f2d": {
                        "feature_id": "3e365087-7754-4748-b3fb-66f8c7e55f2d",
                        "name": "bbox_with_radio_subclass",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [
                          {
                            "feature_id": "9c8e9387-153c-40b0-9597-00f981caa419",
                            "name": "sub_radio_question",
                            "radio_answer": {
                              "feature_id": "a0d18f5c-a1be-434e-ba81-fee6bb8dec36",
                              "name": "first_sub_radio_answer",
                              "classifications": []
                            }
                          }
                        ],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "15": {
                    "objects": {
                      "3e365087-7754-4748-b3fb-66f8c7e55f2d": {
                        "feature_id": "3e365087-7754-4748-b3fb-66f8c7e55f2d",
                        "name": "bbox_with_radio_subclass",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [
                          {
                            "feature_id": "9c8e9387-153c-40b0-9597-00f981caa419",
                            "name": "sub_radio_question",
                            "radio_answer": {
                              "feature_id": "a0d18f5c-a1be-434e-ba81-fee6bb8dec36",
                              "name": "first_sub_radio_answer",
                              "classifications": []
                            }
                          }
                        ],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "12": {
                    "objects": {
                      "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                        "feature_id": "52fc26e7-db68-483b-a5de-bd099c6f830d",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 280
                          },
                          {
                            "x": 300,
                            "y": 380
                          },
                          {
                            "x": 400,
                            "y": 460
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "20": {
                    "objects": {
                      "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                        "feature_id": "52fc26e7-db68-483b-a5de-bd099c6f830d",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 180
                          },
                          {
                            "x": 100,
                            "y": 200
                          },
                          {
                            "x": 200,
                            "y": 260
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "24": {
                    "objects": {
                      "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                        "feature_id": "52fc26e7-db68-483b-a5de-bd099c6f830d",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 300,
                            "y": 310
                          },
                          {
                            "x": 330,
                            "y": 430
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "45": {
                    "objects": {
                      "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                        "feature_id": "52fc26e7-db68-483b-a5de-bd099c6f830d",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 600,
                            "y": 810
                          },
                          {
                            "x": 900,
                            "y": 930
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "17": {
                    "objects": {
                      "6b87ae06-a394-44a1-b9f4-3a31534eac72": {
                        "feature_id": "6b87ae06-a394-44a1-b9f4-3a31534eac72",
                        "name": "point_video",
                        "annotation_kind": "VideoPoint",
                        "classifications": [],
                        "point": {
                          "x": 660.134,
                          "y": 407.926
                        }
                      }
                    },
                    "classifications": []
                  }
                },
                "segments": {
                  "129e3efa-22f8-4399-9984-73d64843003a": [
                    [
                      1,
                      1
                    ],
                    [
                      5,
                      5
                    ]
                  ],
                  "52fc26e7-db68-483b-a5de-bd099c6f830d": [
                    [
                      5,
                      5
                    ],
                    [
                      12,
                      12
                    ],
                    [
                      20,
                      20
                    ],
                    [
                      24,
                      24
                    ],
                    [
                      45,
                      45
                    ]
                  ],
                  "3e365087-7754-4748-b3fb-66f8c7e55f2d": [
                    [
                      13,
                      13
                    ],
                    [
                      15,
                      15
                    ]
                  ],
                  "6b87ae06-a394-44a1-b9f4-3a31534eac72": [
                    [
                      17,
                      17
                    ]
                  ]
                },
                "key_frame_feature_map": {
                  "129e3efa-22f8-4399-9984-73d64843003a": {
                    "1": true,
                    "5": true
                  },
                  "52fc26e7-db68-483b-a5de-bd099c6f830d": {
                    "5": true,
                    "12": true,
                    "20": true,
                    "24": true,
                    "45": true
                  },
                  "3e365087-7754-4748-b3fb-66f8c7e55f2d": {
                    "13": true,
                    "15": true
                  },
                  "6b87ae06-a394-44a1-b9f4-3a31534eac72": {
                    "17": true
                  }
                },
                "classifications": [
                  {
                    "feature_id": "3f7ce4d8-a564-41f5-8698-a94e5bf14b90",
                    "name": "nested_radio_question",
                    "radio_answer": {
                      "feature_id": "4eb9bcf5-ec33-4b4a-b721-359ea5e35e8e",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "b68e15d6-cee5-4b37-baa7-47929ecf6476",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "d2ba79db-3c66-49e1-85e4-c393417d8075",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "a924556e-5d5b-4820-b142-d6a865486aea",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "8fc79fd8-f144-43a6-a918-542cf7f0d4be",
                      "name": "second_radio_answer",
                      "classifications": []
                    }
                  },
                  {
                    "feature_id": "ec1b7b51-e935-4eed-8e2e-0afa006aea25",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "58869371-2290-4b37-9f38-835f8bc5ca32",
                        "name": "first_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "d7641c2c-692c-45e6-999b-3bb42324109f",
                        "name": "second_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "fdc1bf3e-2617-4f48-a1e3-e2355889af09",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "e369f138-bb16-47ed-ba6f-53ded342a0d2",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "5e905abd-e551-408c-b2a0-ef0e600f6ea2",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "d4e53a35-04ee-498a-9e0f-409dfca4b178",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            }
          ],
          "predictions": [
            {
              "label_kind": "Video",
              "version": "1.0.0",
              "id": "clf16sb6p184n133qbsswvlex",
              "annotations": {
                "frames": {
                  "17": {
                    "objects": {
                      "2daecae8-cd31-4dbe-b856-164b0dd2497e": {
                        "feature_id": "2daecae8-cd31-4dbe-b856-164b0dd2497e",
                        "name": "point_video",
                        "annotation_kind": "VideoPoint",
                        "classifications": [],
                        "point": {
                          "x": 660.134,
                          "y": 407.926
                        }
                      }
                    },
                    "classifications": []
                  },
                  "5": {
                    "objects": {
                      "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                        "feature_id": "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 100
                          },
                          {
                            "x": 100,
                            "y": 190
                          },
                          {
                            "x": 190,
                            "y": 220
                          }
                        ]
                      },
                      "b106174b-cbce-4bf7-99b1-ea177ea68df8": {
                        "feature_id": "b106174b-cbce-4bf7-99b1-ea177ea68df8",
                        "name": "bbox_video",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "12": {
                    "objects": {
                      "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                        "feature_id": "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 280
                          },
                          {
                            "x": 300,
                            "y": 380
                          },
                          {
                            "x": 400,
                            "y": 460
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "20": {
                    "objects": {
                      "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                        "feature_id": "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 680,
                            "y": 180
                          },
                          {
                            "x": 100,
                            "y": 200
                          },
                          {
                            "x": 200,
                            "y": 260
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "24": {
                    "objects": {
                      "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                        "feature_id": "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 300,
                            "y": 310
                          },
                          {
                            "x": 330,
                            "y": 430
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "45": {
                    "objects": {
                      "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                        "feature_id": "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf",
                        "name": "line_video_frame",
                        "annotation_kind": "VideoPolyline",
                        "classifications": [],
                        "line": [
                          {
                            "x": 600,
                            "y": 810
                          },
                          {
                            "x": 900,
                            "y": 930
                          }
                        ]
                      }
                    },
                    "classifications": []
                  },
                  "13": {
                    "objects": {
                      "7407c912-128f-4650-ae1a-8d79455fdbea": {
                        "feature_id": "7407c912-128f-4650-ae1a-8d79455fdbea",
                        "name": "bbox_with_radio_subclass",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [
                          {
                            "feature_id": "ae572e2c-f78f-4d52-aeec-6be6a4e68209",
                            "name": "sub_radio_question",
                            "radio_answer": {
                              "feature_id": "b9455178-2b47-46d1-98f5-5c01d9c9bb2d",
                              "name": "first_sub_radio_answer",
                              "classifications": []
                            }
                          }
                        ],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "15": {
                    "objects": {
                      "7407c912-128f-4650-ae1a-8d79455fdbea": {
                        "feature_id": "7407c912-128f-4650-ae1a-8d79455fdbea",
                        "name": "bbox_with_radio_subclass",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [
                          {
                            "feature_id": "ae572e2c-f78f-4d52-aeec-6be6a4e68209",
                            "name": "sub_radio_question",
                            "radio_answer": {
                              "feature_id": "b9455178-2b47-46d1-98f5-5c01d9c9bb2d",
                              "name": "first_sub_radio_answer",
                              "classifications": []
                            }
                          }
                        ],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  },
                  "1": {
                    "objects": {
                      "b106174b-cbce-4bf7-99b1-ea177ea68df8": {
                        "feature_id": "b106174b-cbce-4bf7-99b1-ea177ea68df8",
                        "name": "bbox_video",
                        "annotation_kind": "VideoBoundingBox",
                        "classifications": [],
                        "bounding_box": {
                          "top": 146,
                          "left": 98,
                          "height": 382,
                          "width": 341
                        }
                      }
                    },
                    "classifications": []
                  }
                },
                "segments": {
                  "2daecae8-cd31-4dbe-b856-164b0dd2497e": [
                    [
                      17,
                      17
                    ]
                  ],
                  "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": [
                    [
                      5,
                      5
                    ],
                    [
                      12,
                      12
                    ],
                    [
                      20,
                      20
                    ],
                    [
                      24,
                      24
                    ],
                    [
                      45,
                      45
                    ]
                  ],
                  "b106174b-cbce-4bf7-99b1-ea177ea68df8": [
                    [
                      5,
                      5
                    ],
                    [
                      1,
                      1
                    ]
                  ],
                  "7407c912-128f-4650-ae1a-8d79455fdbea": [
                    [
                      13,
                      13
                    ],
                    [
                      15,
                      15
                    ]
                  ]
                },
                "key_frame_feature_map": {
                  "2daecae8-cd31-4dbe-b856-164b0dd2497e": {
                    "17": true
                  },
                  "6fe9c3ac-e143-4e84-bc85-1dd27fa460bf": {
                    "5": true,
                    "12": true,
                    "20": true,
                    "24": true,
                    "45": true
                  },
                  "b106174b-cbce-4bf7-99b1-ea177ea68df8": {
                    "5": true,
                    "1": true
                  },
                  "7407c912-128f-4650-ae1a-8d79455fdbea": {
                    "13": true,
                    "15": true
                  }
                },
                "classifications": [
                  {
                    "feature_id": "20af4d47-cf23-4b35-be3a-ddb05f9286aa",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "4d855f62-ab6c-43ba-989d-ebd5a906fda5",
                        "name": "first_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "f826ab46-71f9-4be2-91f1-7933ef591465",
                        "name": "second_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "6c14215f-9f43-448b-816e-7e8a8592365d",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "ce0520f3-5ceb-4436-a39e-091a90e55052",
                      "name": "second_radio_answer",
                      "classifications": []
                    }
                  },
                  {
                    "feature_id": "d28ff4be-e3c1-4b11-b3fd-a32bcc4f8e73",
                    "name": "nested_radio_question",
                    "radio_answer": {
                      "feature_id": "877ec7ec-8e04-4cb4-8bb6-f6116671c212",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "3a721217-f000-4635-8788-a693ed004714",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "deda6429-b52d-40bc-b1f7-df6ccebb57f1",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "dedfded0-2cbc-4ac7-bf38-c32cc4071d11",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "2f209ec4-af56-4ef0-9170-3e4b95cbcfcc",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "70eeab45-ae91-4a7e-9b13-d4d6ee020324",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "301c935b-0302-436a-9467-3c93c5153050",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  }
                ]
              }
            }
          ]
        }
      }
    }
  }
}
{
  "data_row": {
    "id": "cldysxe2t01po070wg8ptewhx",
    "global_key": "9c7111f8-4bc6-4771-b494-00e0fb19e3a2",
    "row_data": "{\"tileLayerUrl\":\"https://api.mapbox.com/styles/v1/mapbox/satellite-streets-v11/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw\",\"bounds\":[[-122.31764674186705,37.87276155898985],[-122.31635199317932,37.87398109727749]],\"minZoom\":17,\"maxZoom\":23,\"maxNativeZoom\":null,\"epsg\":\"EPSG4326\",\"tileSize\":256,\"alternativeLayers\":[],\"version\":2}",
    "details": {
      "dataset_id": "cldysxdb501cy07yb39758pf0",
      "created_at": "2023-02-10",
      "updated_at": "2023-02-10",
      "created_by": "[email protected]"
    }
  },
  "media_attributes": {
    "mime_type": "application/x-tms-geo"
  },
  "attachments": [],
  "metadata_fields": [],
  "models": {
    "a09051d9-52dc-0fc5-701a-ddb48c839da0": {
      "model_name": "geospatial_model_run_5d31618b-989d-4d21-9cea-6e5bbbe5e9c0",
      "model_runs": {
        "a09051d9-93df-0497-c29d-f684f096d748": {
          "model_run_name": "iteration 1",
          "annotation_group_id": "4db6406d-e6ec-4ddd-bea6-27b271733474",
          "labels": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldysxwk00muo134u2xo4da97",
              "annotations": {
                "objects": [
                  {
                    "feature_id": "3b6a99fb-1fef-41bc-82af-abcf379fe72e",
                    "name": "point_geo",
                    "annotation_kind": "GeoPoint",
                    "classifications": [],
                    "geojson": {
                      "type": "Point",
                      "coordinates": [
                        -122.31741,
                        37.873557
                      ]
                    }
                  },
                  {
                    "feature_id": "664adf23-c795-4192-bb40-88b000a783a3",
                    "name": "polygon_geo",
                    "annotation_kind": "GeoPolygon",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.31703,
                            37.873978
                          ],
                          [
                            -122.317024,
                            37.873935
                          ],
                          [
                            -122.316989,
                            37.873899
                          ],
                          [
                            -122.316979,
                            37.873859
                          ],
                          [
                            -122.316958,
                            37.873856
                          ],
                          [
                            -122.316955,
                            37.873816
                          ],
                          [
                            -122.31692,
                            37.873779
                          ],
                          [
                            -122.31691,
                            37.873734
                          ],
                          [
                            -122.316886,
                            37.873697
                          ],
                          [
                            -122.316855,
                            37.873685
                          ],
                          [
                            -122.31682,
                            37.873611
                          ],
                          [
                            -122.316765,
                            37.87355
                          ],
                          [
                            -122.316758,
                            37.873517
                          ],
                          [
                            -122.31671,
                            37.873489
                          ],
                          [
                            -122.31671,
                            37.873452
                          ],
                          [
                            -122.316679,
                            37.87344
                          ],
                          [
                            -122.316634,
                            37.873355
                          ],
                          [
                            -122.316603,
                            37.873348
                          ],
                          [
                            -122.3166,
                            37.873321
                          ],
                          [
                            -122.316545,
                            37.87329
                          ],
                          [
                            -122.316528,
                            37.873199
                          ],
                          [
                            -122.31649,
                            37.873183
                          ],
                          [
                            -122.31649,
                            37.873162
                          ],
                          [
                            -122.316417,
                            37.873092
                          ],
                          [
                            -122.316411,
                            37.873055
                          ],
                          [
                            -122.316397,
                            37.87304
                          ],
                          [
                            -122.316356,
                            37.87304
                          ],
                          [
                            -122.316356,
                            37.873981
                          ],
                          [
                            -122.31703,
                            37.873978
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "7f5b7b2f-31a0-44f7-ad26-26969d874bbd",
                    "name": "polyline_geo",
                    "annotation_kind": "GeoPolyline",
                    "classifications": [],
                    "geojson": {
                      "type": "LineString",
                      "coordinates": [
                        [
                          -122.317578,
                          37.873963
                        ],
                        [
                          -122.316398,
                          37.873967
                        ],
                        [
                          -122.31639,
                          37.872779
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "b3c09dfc-df26-47df-8211-7f83feedf058",
                    "name": "bbox_checklist_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "812b3224-69df-45e2-9615-56bf6166adc6",
                        "name": "checklist_class_name",
                        "checklist_answers": [
                          {
                            "feature_id": "4f326e03-9e98-4561-91ba-332eb3cf893f",
                            "name": "first_checklist_answer",
                            "classifications": []
                          }
                        ]
                      }
                    ],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317113,
                            37.873608
                          ],
                          [
                            -122.317113,
                            37.873402
                          ],
                          [
                            -122.316655,
                            37.873402
                          ],
                          [
                            -122.316655,
                            37.873608
                          ],
                          [
                            -122.317113,
                            37.873608
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "c15bce8e-9d16-4b27-aa3c-be405d5eff90",
                    "name": "bbox_text_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "07b23be1-f479-452d-824b-c9d175fc87fd",
                        "name": "free_text_geo",
                        "text_answer": {
                          "content": "sample text"
                        }
                      }
                    ],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317508,
                            37.87338
                          ],
                          [
                            -122.317508,
                            37.873182
                          ],
                          [
                            -122.3171,
                            37.873182
                          ],
                          [
                            -122.3171,
                            37.87338
                          ],
                          [
                            -122.317508,
                            37.87338
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "d5062fe1-0f8c-4226-bcb3-bdc689cc1c5a",
                    "name": "bbox_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317345,
                            37.873859
                          ],
                          [
                            -122.317345,
                            37.873713
                          ],
                          [
                            -122.31673,
                            37.873713
                          ],
                          [
                            -122.31673,
                            37.873859
                          ],
                          [
                            -122.317345,
                            37.873859
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "dc1cab87-f948-4aba-98a8-a05baac6931c",
                    "name": "polygon_geo",
                    "annotation_kind": "GeoPolygon",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.316918,
                            37.87329
                          ],
                          [
                            -122.317102,
                            37.873043
                          ],
                          [
                            -122.316801,
                            37.873036
                          ],
                          [
                            -122.316918,
                            37.87329
                          ]
                        ]
                      ]
                    }
                  }
                ],
                "classifications": [
                  {
                    "feature_id": "2d8f5e7f-b60b-4c42-af76-648cfa937012",
                    "name": "checklist_question_geo",
                    "checklist_answers": [
                      {
                        "feature_id": "2d8ff88d-5702-4287-a252-7a509e9d6a64",
                        "name": "first_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "84898b1e-7898-4c30-8221-3124d999c13a",
                        "name": "third_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "8a594ebf-3594-4464-b511-78c14d5abe6d",
                        "name": "second_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "50a30862-d01d-428c-bec3-f4d69c7faae0",
                    "name": "radio_question_geo",
                    "radio_answer": {
                      "feature_id": "22bf9e49-f2ce-43e7-8338-5f19cdd98d2f",
                      "name": "first_radio_answer",
                      "classifications": []
                    }
                  }
                ],
                "relationships": []
              }
            }
          ],
          "predictions": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldysxwk00muo134u2xo4da97",
              "annotations": {
                "objects": [
                  {
                    "feature_id": "0653e353-8f56-46a5-9d17-9818d5ebdb29",
                    "name": "bbox_checklist_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "378e9899-250b-426a-a166-b7700736947c",
                        "name": "checklist_class_name",
                        "checklist_answers": [
                          {
                            "feature_id": "c4259c2e-4dbd-4d55-b76d-097e5a2c5d63",
                            "name": "first_checklist_answer",
                            "classifications": []
                          }
                        ]
                      }
                    ],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317113,
                            37.873402
                          ],
                          [
                            -122.317113,
                            37.873608
                          ],
                          [
                            -122.316655,
                            37.873608
                          ],
                          [
                            -122.316655,
                            37.873402
                          ],
                          [
                            -122.317113,
                            37.873402
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "78d667d5-56b4-4de0-9ed8-46457e5e023b",
                    "name": "point_geo",
                    "annotation_kind": "GeoPoint",
                    "classifications": [],
                    "geojson": {
                      "type": "Point",
                      "coordinates": [
                        -122.31741,
                        37.873557
                      ]
                    }
                  },
                  {
                    "feature_id": "8bc33cd9-a559-4f9c-a741-0d56e0276b7b",
                    "name": "polygon_geo",
                    "annotation_kind": "GeoPolygon",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.316918,
                            37.87329
                          ],
                          [
                            -122.317102,
                            37.873043
                          ],
                          [
                            -122.316801,
                            37.873036
                          ],
                          [
                            -122.316918,
                            37.87329
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "9ef748f5-baff-4a9b-a61e-621efc1ab33d",
                    "name": "bbox_text_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [
                      {
                        "feature_id": "8b9515eb-b16e-43a8-8ea4-5d233de3327a",
                        "name": "free_text_geo",
                        "text_answer": {
                          "content": "sample text"
                        }
                      }
                    ],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317508,
                            37.873182
                          ],
                          [
                            -122.317508,
                            37.87338
                          ],
                          [
                            -122.3171,
                            37.87338
                          ],
                          [
                            -122.3171,
                            37.873182
                          ],
                          [
                            -122.317508,
                            37.873182
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "a14a8857-752e-473b-81ab-1a555d5bf395",
                    "name": "polyline_geo",
                    "annotation_kind": "GeoPolyline",
                    "classifications": [],
                    "geojson": {
                      "type": "LineString",
                      "coordinates": [
                        [
                          -122.317578,
                          37.873963
                        ],
                        [
                          -122.316398,
                          37.873967
                        ],
                        [
                          -122.31639,
                          37.872779
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "abd7b89d-a762-438a-9f63-3906c3a8f5bb",
                    "name": "polygon_geo_2",
                    "annotation_kind": "GeoPolygon",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.31703,
                            37.873978
                          ],
                          [
                            -122.317024,
                            37.873935
                          ],
                          [
                            -122.316989,
                            37.873899
                          ],
                          [
                            -122.316979,
                            37.873859
                          ],
                          [
                            -122.316958,
                            37.873856
                          ],
                          [
                            -122.316955,
                            37.873816
                          ],
                          [
                            -122.31692,
                            37.873779
                          ],
                          [
                            -122.31691,
                            37.873734
                          ],
                          [
                            -122.316886,
                            37.873697
                          ],
                          [
                            -122.316855,
                            37.873685
                          ],
                          [
                            -122.31682,
                            37.873611
                          ],
                          [
                            -122.316765,
                            37.87355
                          ],
                          [
                            -122.316758,
                            37.873517
                          ],
                          [
                            -122.31671,
                            37.873489
                          ],
                          [
                            -122.31671,
                            37.873452
                          ],
                          [
                            -122.316679,
                            37.87344
                          ],
                          [
                            -122.316634,
                            37.873355
                          ],
                          [
                            -122.316603,
                            37.873348
                          ],
                          [
                            -122.3166,
                            37.873321
                          ],
                          [
                            -122.316545,
                            37.87329
                          ],
                          [
                            -122.316528,
                            37.873199
                          ],
                          [
                            -122.31649,
                            37.873183
                          ],
                          [
                            -122.31649,
                            37.873162
                          ],
                          [
                            -122.316417,
                            37.873092
                          ],
                          [
                            -122.316411,
                            37.873055
                          ],
                          [
                            -122.316397,
                            37.87304
                          ],
                          [
                            -122.316356,
                            37.87304
                          ],
                          [
                            -122.316356,
                            37.873981
                          ],
                          [
                            -122.31703,
                            37.873978
                          ]
                        ]
                      ]
                    }
                  },
                  {
                    "feature_id": "bd86b6a5-6b6b-4f8b-8e75-1bcc60823571",
                    "name": "bbox_geo",
                    "annotation_kind": "GeoBoundingBox",
                    "classifications": [],
                    "geojson": {
                      "type": "Polygon",
                      "coordinates": [
                        [
                          [
                            -122.317345,
                            37.873713
                          ],
                          [
                            -122.317345,
                            37.873859
                          ],
                          [
                            -122.31673,
                            37.873859
                          ],
                          [
                            -122.31673,
                            37.873713
                          ],
                          [
                            -122.317345,
                            37.873713
                          ]
                        ]
                      ]
                    }
                  }
                ],
                "classifications": [
                  {
                    "feature_id": "554fc8db-3c9c-4683-89f5-a9bd84663087",
                    "name": "radio_question_geo",
                    "radio_answer": {
                      "feature_id": "7e8effd2-6c6c-43f7-a603-e7cf902172e5",
                      "name": "first_radio_answer",
                      "classifications": []
                    }
                  },
                  {
                    "feature_id": "f8ee63f0-8ec0-4ad5-a6a7-9a6085986fed",
                    "name": "checklist_question_geo",
                    "checklist_answers": [
                      {
                        "feature_id": "58f3fc74-8ec4-4e6d-9bec-c217ec41ba1b",
                        "name": "third_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "6a2d4ff4-47b2-4694-ad0d-1d713b78455c",
                        "name": "first_checklist_answer",
                        "classifications": []
                      },
                      {
                        "feature_id": "f441ffba-b163-4c4d-943d-57065749d136",
                        "name": "second_checklist_answer",
                        "classifications": []
                      }
                    ]
                  }
                ],
                "relationships": []
              }
            }
          ]
        }
      }
    }
  }
}
{
  "data_row": {
    "id": "cldyr6rgw7plt07ywc9qn4rxf",
    "global_key": "278dd556-1a6a-4d66-8dfd-43167fb3fc05",
    "row_data": "https://storage.googleapis.com/labelbox-datasets/html_sample_data/sample_html_2.html",
    "details": {
      "dataset_id": "cldyr6qo61tic07z1eieh3enb",
      "created_at": "2023-02-10",
      "updated_at": "2023-02-10",
      "created_by": "[email protected]"
    }
  },
  "media_attributes": {
    "mime_type": "text/html"
  },
  "attachments": [],
  "metadata_fields": [],
  "models": {
    "a0903f80-e720-0c44-1f88-d8eda8ff62fb": {
      "model_name": "HTML_model_run_25724a8d-56db-4c95-b762-0999cce1a738",
      "model_runs": {
        "a0903f81-3b79-0d74-f653-71624d71dba1": {
          "model_run_name": "iteration 1",
          "annotation_group_id": "56a2d6a3-fdca-4016-8002-a188e9ab61c3",
          "labels": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldyr75es0mrb134uw3systq2",
              "annotations": {
                "objects": [],
                "classifications": [
                  {
                    "feature_id": "2d81b3c9-f25a-4207-97a1-0fc22fb11982",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "bb3e4134-d1e5-4373-b835-3b76a7159242",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "88ebd4fa-e1df-4bcd-8956-c8629052a302",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "5a7f328d-d139-4d1f-b2e6-0bafb2b658ed",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "feature_id": "513fbb38-9401-4932-95b4-75e58c94a73c",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "e2ef5c4a-b35e-445d-86df-0c215a09a339",
                        "name": "first_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "9f4daa3c-b598-4721-bac6-cc0b5b667000",
                    "name": "free_text",
                    "text_answer": {
                      "content": "sample text"
                    }
                  },
                  {
                    "feature_id": "d79160cf-fb95-42b3-8b36-6605b025a33b",
                    "name": "radio_question_sub",
                    "radio_answer": {
                      "feature_id": "2b8dc1d2-a0f0-47a8-8cd5-6df1780bc94c",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "f7f1cd94-c8e1-4acb-9799-127f7f336a05",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "9d390635-57ac-469b-8f1f-908a84f29afc",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "e0694083-c950-424f-aa85-092418e90e85",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "d1953e4e-c9ed-4e62-946c-f399a4985abd",
                      "name": "first_radio_answer",
                      "classifications": []
                    }
                  }
                ],
                "relationships": []
              }
            }
          ],
          "predictions": [
            {
              "label_kind": "Default",
              "version": "1.0.0",
              "id": "cldyr75es0mrb134uw3systq2",
              "annotations": {
                "objects": [],
                "classifications": [
                  {
                    "feature_id": "41805216-7567-4fb3-82ef-cd0e072a7d93",
                    "name": "free_text",
                    "text_answer": {
                      "content": "sample text"
                    }
                  },
                  {
                    "feature_id": "4a6243d5-5bc2-4d72-926d-fe771b7a95b9",
                    "name": "checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "a04df64e-eeb1-4a7a-8b11-394704738f6b",
                        "name": "first_checklist_answer",
                        "classifications": []
                      }
                    ]
                  },
                  {
                    "feature_id": "609990c4-87c7-4e94-b45a-15483836ef4c",
                    "name": "nested_checklist_question",
                    "checklist_answers": [
                      {
                        "feature_id": "959cda94-f3b0-41ec-8b66-006fbcbe8e60",
                        "name": "first_checklist_answer",
                        "classifications": [
                          {
                            "feature_id": "05ca5ee1-2764-4bbd-90ac-fcac9d75c228",
                            "name": "sub_checklist_question",
                            "checklist_answers": [
                              {
                                "feature_id": "6160b85e-dd87-41dd-87a7-234b6ad0aae7",
                                "name": "first_sub_checklist_answer",
                                "classifications": []
                              }
                            ]
                          }
                        ]
                      }
                    ]
                  },
                  {
                    "feature_id": "b5ef33ac-03ea-48dd-969e-4cd47fbc54c2",
                    "name": "radio_question_sub",
                    "radio_answer": {
                      "feature_id": "3c87a0ca-0499-41a1-914b-e9e14299709e",
                      "name": "first_radio_answer",
                      "classifications": [
                        {
                          "feature_id": "9519d160-27c5-45aa-b619-cdc1712560cc",
                          "name": "sub_radio_question",
                          "radio_answer": {
                            "feature_id": "e8aef1ab-befa-49e8-9879-40e211fe4308",
                            "name": "first_sub_radio_answer",
                            "classifications": []
                          }
                        }
                      ]
                    }
                  },
                  {
                    "feature_id": "f4c9d912-0b82-4f98-8187-c17b82512d6e",
                    "name": "radio_question",
                    "radio_answer": {
                      "feature_id": "8a31d9ee-de7f-4f40-84da-e6eb6ec55f8e",
                      "name": "first_radio_answer",
                      "classifications": []
                    }
                  }
                ],
                "relationships": []
              }
            }
          ]
        }
      }
    }
  }
}

Export data rows from a Model Run (UI)

You can use the filters to query data row label status, metadata, batch, annotations, and workflow history. Note that excluding fields from your export will make the export process faster and the export file smaller.

To export your annotations via the Labelbox UI, follow these steps:

  1. Select a model run.
  2. Configure your export

Option 1: Export the entire Model Run

Click on All (X number of data rows), then click the Export data v2 (beta) in the drop-down menu.

Option 2: Export a Split or a Slice

On the left side of the Model Run page, click on one of the Split options (Train, Validation, or Test) or Slice options. Click on Slice/Split (X number of data rows), then click the Export data v2 (beta) in the drop-down menu.

Option 3: Filter data rows

  1. You can also build your filters in the Model filters to query for data rows of the desired context.
  2. Then click the Done (X number of data rows) dropdown, and click Export data v2 (beta) to export the data rows.

Option 4: Select specific data rows

  1. Hand-select data rows to export using the check boxes next to each data row.
  2. Then, click the drop-down on the right side X selected, click Export data v2 (beta) to export the data rows.

  1. After you click Export JSON, you will see a notification banner telling you that you can track the progress of the export job in the Notifications center.
  2. Once the job is complete, download the export file by clicking the Download link.

Export from a Model Run (Python SDK)

# Set the export params to include/exclude certain fields. Make sure each of these fields are correctly grabbed 
export_params= {
    "attachments": True,
    "metadata_fields": True,
    "data_row_details": True,
}

export_task = model_run.export_v2(params=export_params)
export_task.wait_till_done()
print(export_task.errors)
export_json = export_task.result