> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DEE order structure

> Reference for the top-level JSON structure of a DEE order, covering the `name`, `maxMdxNbRetries`, `priority`, `queries`, and `output` properties that define what to extract and how.

A DEE order is defined by five top-level properties: `name`, `maxMdxNbRetries`, `priority`, `queries`, and `output`.

## JSON structure

```json theme={"languages":{"custom":["/engine/python-sdk/0.9/languages/pycon.tmLanguage.json"]}}
{
  "name": "order1",
  "maxMdxNbRetries": 2,
  "priority": "NORMAL",
  "queries": [
    {
      ...
    }
  ],
  "output": {
    ...
  }
}
```

## Property details

| Property        | Values                                                                                                     | Default Value |
| --------------- | ---------------------------------------------------------------------------------------------------------- | ------------- |
| name            | String                                                                                                     |               |
| maxMdxNbRetries | Integer                                                                                                    | 1             |
| queries         | List of DEE Queries (see the [Queries](/user-guide/dee-order-structure/queries/drillthroughQuery) section) |               |
| output          | List of [DEE Outputs](/user-guide/dee-order-structure/output/overview)                                     |               |
