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

# TriggerLevel Schema

> Aggregated currently open trigger orders at one rounded price bucket. Includes route metadata, schemas, examples, and implementation notes.

Source OpenAPI: 0xArchive API 1.6.1; 147 paths; 128 component schemas.

Aggregated currently open trigger orders at one rounded price bucket.

## Required Fields

| Field          | Type          | Description                                      |
| -------------- | ------------- | ------------------------------------------------ |
| `ask_count`    | integer:int64 | Number of ask-side trigger orders in the bucket. |
| `ask_size`     | number        | Ask-side trigger size in the bucket.             |
| `bid_count`    | integer:int64 | Number of bid-side trigger orders in the bucket. |
| `bid_size`     | number        | Bid-side trigger size in the bucket.             |
| `price_bucket` | number        | Rounded trigger price bucket.                    |

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TriggerLevel",
  "description": "Aggregated currently open trigger orders at one rounded price bucket.",
  "type": "object",
  "required": [
    "ask_count",
    "ask_size",
    "bid_count",
    "bid_size",
    "price_bucket"
  ],
  "properties": {
    "ask_count": {
      "description": "Number of ask-side trigger orders in the bucket.",
      "type": "integer",
      "format": "int64",
      "example": 9
    },
    "ask_size": {
      "description": "Ask-side trigger size in the bucket.",
      "type": "number",
      "example": 18.75
    },
    "bid_count": {
      "description": "Number of bid-side trigger orders in the bucket.",
      "type": "integer",
      "format": "int64",
      "example": 12
    },
    "bid_size": {
      "description": "Bid-side trigger size in the bucket.",
      "type": "number",
      "example": 31.25
    },
    "price_bucket": {
      "description": "Rounded trigger price bucket.",
      "type": "number",
      "example": 64200
    }
  }
}
```

## Referenced By

Use this shared schema with the generated component index and route-specific endpoint pages during implementation.
