Text annotation JSON
- 10 Mar 2025
- Print
- DarkLight
- PDF
Text annotation JSON
- Updated On 10 Mar 2025
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
This page describes NLP (Natural Language Processing) JSON, a data format for describing NLP data in JavaScript Object Notation (JSON). This JSON code includes the entity's data related to our software and its metadata.
Read here about the NLP Annotation Studio.
Format Details
{
"annotations": [
{
"id": "6569a9bb64a270e5cc8ae821",
"datasetId": "64b4d464bdf1fccfe1ba5790",
"url": "https://gate.dataloop.ai/api/v1/items/6569a9bb64a270e5cc8ae821",
"dataset": "https://gate.dataloop.ai/api/v1/datasets/64b4d464bdf1fccfe1ba5790",
"createdAt": "2023-12-01T09:39:07.264Z",
"dir": "/",
"filename": "/Architecture.txt",
"type": "file",
"hidden": false,
"metadata": {
"system": {
"encoding": "7bit",
"isBinary": false,
"mimetype": "text/plain",
"originalname": "Architecture.txt",
"refs": [
{
"id": "65941368b9bcb6a3fb4a598d",
"type": "task"
},
{
"id": "65941368b9bcb6ff2b4a598f",
"type": "assignment"
},
{
"id": "67b5b294dcaf2107243df699",
"type": "assignment"
},
{
"id": "67b5b294dcaf213f133df697",
"type": "task"
}
],
"size": 465,
"taskStatusLog": []
}
},
"name": "Architecture.txt",
"creator": "user@dataloop.ai",
"updatedAt": "2023-12-01T09:39:07.304Z",
"updatedBy": "user@dataloop.ai",
"stream": "https://gate.dataloop.ai/api/v1/items/6569a9bb64a270e5cc8ae821/stream",
"thumbnail": "https://gate.dataloop.ai/api/v1/items/6569a9bb64a270e5cc8ae821/thumbnail",
"annotations": [
{
"id": "67b5b27511348cc12361627e",
"datasetId": "64b4d464bdf1fccfe1ba5790",
"itemId": "6569a9bb64a270e5cc8ae821",
"url": "https://gate.dataloop.ai/api/v1/annotations/67b5b27511348cc12361627e",
"item": "https://gate.dataloop.ai/api/v1/items/6569a9bb64a270e5cc8ae821",
"dataset": "https://gate.dataloop.ai/api/v1/datasets/64b4d464bdf1fccfe1ba5790",
"type": "text_mark",
"label": "sentence-2",
"attributes": [],
"coordinates": {
"end": 465,
"label": "sentence-2",
"start": 282,
"type": "block"
},
"metadata": {
"system": {
"attributes": {},
"automated": false,
"clientId": "9df88b6b-44f5-4946-a6e8-ce32e2a8553b",
"endFrame": 1,
"endTime": 0,
"frame": 0,
"itemLinks": [],
"objectId": "4",
"openAnnotationVersion": "1.90.2-prod.0",
"recipeId": "6569aa2b27d7bdd0605b8fc9",
"snapshots_": [],
"startTime": 0,
"system": false
},
"user": {}
},
"creator": "user@gmail.com",
"createdAt": "2025-02-19T10:29:09.919Z",
"updatedBy": "user@gmail.com",
"updatedAt": "2025-02-19T10:29:09.919Z",
"hash": "83855a80fca7f5ef19fc57f67fcafe7af1fbd666",
"source": "ui"
}
],
"annotationsCount": 1,
"annotated": true
}
]
}
Dictionary Table
Key Name | Definition | Parent Key |
---|---|---|
id | Unique identifier for the item | Root |
datasetId | Identifier for the dataset containing the item | Root |
url | API URL to access the item | Root |
dataset | API URL to access the dataset | Root |
createdAt | Timestamp of when the item was created | Root |
dir | Directory path of the item | Root |
filename | File name of the item | Root |
type | Type of the item (e.g., file) | Root |
hidden | Boolean indicating if the item is hidden | Root |
metadata | Metadata associated with the item | Root |
system | System-related metadata | metadata |
encoding | Encoding format of the file | system |
isBinary | Boolean indicating if the file is binary | system |
mimetype | MIME type of the file | system |
originalname | Original name of the file | system |
refs | List of references related to the file | system |
id | Identifier of the reference | refs |
type | Type of reference (e.g., task, assignment) | refs |
size | Size of the file in bytes | system |
taskStatusLog | Log of task statuses related to the item | system |
name | Name of the item | Root |
creator | Email of the user who created the item | Root |
updatedAt | Timestamp of the last update | Root |
updatedBy | Email of the user who updated the item | Root |
stream | API URL to stream the item | Root |
thumbnail | API URL to access the thumbnail | Root |
annotations | List of annotations associated with the item | Root |
id | Unique identifier for the annotation | annotations |
datasetId | Identifier of the dataset associated with the annotation | annotations |
itemId | Identifier of the item being annotated | annotations |
url | API URL to access the annotation | annotations |
item | API URL to access the annotated item | annotations |
dataset | API URL to access the dataset of the annotation | annotations |
type | Type of annotation (e.g., text_mark) | annotations |
label | Label assigned to the annotation | annotations |
attributes | List of attributes assigned to the annotation | annotations |
coordinates | Coordinates of the text annotation | annotations |
end | Ending position of the annotation in text | coordinates |
label | Label associated with the annotation block | coordinates |
start | Starting position of the annotation in text | coordinates |
type | Type of annotation block | coordinates |
metadata | Metadata related to the annotation | annotations |
system | System metadata for annotation | metadata |
attributes | Additional system attributes | system |
automated | Boolean indicating if annotation was automated | system |
clientId | Client ID associated with annotation | system |
endFrame | End frame of the annotation | system |
endTime | End time of the annotation | system |
frame | Frame index of the annotation | system |
itemLinks | Links to related annotation items | system |
objectId | Object ID associated with the annotation | system |
openAnnotationVersion | Version of annotation system | system |
recipeId | Recipe identifier for annotation | system |
snapshots_ | Snapshots related to the annotation | system |
startTime | Start time of the annotation | system |
system | Boolean indicating if annotation is system-generated | system |
user | User-related metadata | metadata |
creator | Email of the user who created the annotation | annotations |
createdAt | Timestamp when annotation was created | annotations |
updatedBy | Email of the user who updated the annotation | annotations |
updatedAt | Timestamp when annotation was last updated | annotations |
hash | Unique hash identifier for annotation | annotations |
source | Source of the annotation (e.g., UI) | annotations |
annotationsCount | Total count of annotations for the item | Root |
annotated | Boolean indicating if the item has annotations | Root |