# Body Annotations

After proofreading a body, users can edit the proofreading status or other biological information about the body/neuron.

## How to annotate a body

Select a body and choose ‘Annotate’ from the right click menu.  The body annotation window opens.

![Body Annotation](/files/-Lz9HmhxPWXUeXGgcxxw)

{% hint style="info" %}
The selected body will be locked when the body annotation dialog is open and unlocked automatically after the dialog close.
{% endhint %}

## Where are the annotations stored?

All the annotations will be stored as key-value pairs under the keyvalue data `<segmentation>_annotations`.  Each key of annotation is the corresponding body ID and its value is a JSON object representing the annotation.

Example:

```javascript
{
    "user": "zhaot", 
    "body ID": 1414845661, 
    "primary neurite": "PDM04", 
    "class": "Delta0L", 
    "status": "Roughly traced", 
    "comment": "hemi brain whole 20K to 30K", 
    "naming user": "zhaot", 
    "instance": "Delta12g_R"
}
```

{% hint style="info" %}
Due to a legacy  issue, the data name is annotations instead of `<segmentation>_annotations` when the segmentation name is `bodies`.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://janelia-flyem.gitbook.io/neutu/annotation/body-annotations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
