```json
[
{
"result": [
{
"id": "17n06ubOJs",
"type": "keypointlabels",
"value": {
"x": 6.675567423230974,
"y": 20.597014925373134,
"width": 0.26702269692923897,
"keypointlabels": [
"nose"
]
},
"origin": "manual",
"to_name": "image",
"parentID": "QHG4TBXuNC",
"from_name": "kp",
"image_rotation": 0,
"original_width": 200,
"original_height": 179
},
{
"id": "QHG4TBXuNC",
"type": "rectanglelabels",
"value": {
"x": 3.871829105473965,
"y": 4.029850746268656,
"width": 94.39252336448598,
"height": 92.08955223880598,
"rotation": 0,
"rectanglelabels": [
"animal"
]
},
"origin": "manual",
"to_name": "image",
"from_name": "bbox",
"image_rotation": 0,
"original_width": 200,
"original_height": 179
}
]
```
```json
[
{
"id": 0,
"image_id": 0,
"category_id": 0,
"segmentation": [],
"bbox": [
7.74365821094793,
7.213432835820895,
188.78504672897196,
164.84029850746268
],
"ignore": 0,
"iscrowd": 0,
"area": 31119.38345654903
},
{
"id": 1,
"image_id": 0,
"category_id": 0,
"keypoints": [
13,
37,
2,
33,
33,
2,
167,
24,
2
],
"num_keypoints": 3,
"bbox": [
13,
24,
154,
13
],
"iscrowd": 0
}
]
```
```
0 0.5106809078771696 0.5007462686567165 0.9439252336448598 0.9208955223880598 0.06675567423230974 0.20597014925373133 2 0.1628838451268358 0.18507462686567164 2 0.8371161548731643 0.13134328358208955 2
```
{% enddetails %}
### CoNLL2003
A popular format used for the [CoNLL-2003 named entity recognition challenge](https://www.clips.uantwerpen.be/conll2003/ner/). Supports text labeling projects that use the `Text` and `Labels` tags.
### CSV
Results are stored as comma-separated values with the column names specified by the values of the `"from_name"` and `"to_name"` fields in the labeling configuration. Supports all project types.
### JSON
List of items in [raw JSON format](#Label-Studio-JSON-format-of-annotated-tasks) stored in one JSON file. Use this format to export both the data and the annotations for a dataset. Supports all project types.
### JSON_MIN
List of items where only `"from_name", "to_name"` values from the [raw JSON format](#Label-Studio-JSON-format-of-annotated-tasks) are exported. Use this format to export the annotations and the data for a dataset, and no Label-Studio-specific fields. Supports all project types.
For example:
```json
{
"image": "https://htx-pub.s3.us-east-1.amazonaws.com/examples/images/nick-owuor-astro-nic-visuals-wDifg5xc9Z4-unsplash.jpg",
"tag": [{
"height": 10.458911419423693,
"rectanglelabels": [
"Moonwalker"
],
"rotation": 0,
"width": 12.4,
"x": 50.8,
"y": 5.869797225186766
}]
}
```
### Pascal VOC XML
A popular XML-formatted task data is used for object detection and image segmentation tasks. Supports bounding box image labeling projects that use the `RectangleLabels` tag.
### spaCy
Label Studio does not support exporting directly to spaCy binary format, but you can convert annotations exported from Label Studio to a format compatible with spaCy. You must have the spacy python package installed to perform this conversion.
To transform Label Studio annotations into spaCy binary format, do the following:
1. Export your annotations to CONLL2003 format.
2. Open the downloaded file and update the first line of the exported file to add `O` on the first line:
```
-DOCSTART- -X- O O
```
3. From the command line, run spacy convert to convert the CoNLL-formatted annotations to spaCy binary format, replacing `/path/to/