> ## 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.

# PriceLevel Schema

> Single price level in the order book. Includes required fields, field types, schema references, and generated JSON details from the 0xArchive OpenAPI contract.

Source OpenAPI: 0xArchive API 1.5.0; 140 paths; 119 component schemas.

Single price level in the order book

## Required Fields

| Field | Type    | Description                    |
| ----- | ------- | ------------------------------ |
| `n`   | integer | Number of orders at this level |
| `px`  | string  | Price                          |
| `sz`  | string  | Total size at this price level |

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PriceLevel",
  "description": "Single price level in the order book",
  "type": "object",
  "required": [
    "n",
    "px",
    "sz"
  ],
  "properties": {
    "n": {
      "description": "Number of orders at this level",
      "type": "integer",
      "example": 15
    },
    "px": {
      "description": "Price",
      "type": "string",
      "example": "42150.00"
    },
    "sz": {
      "description": "Total size at this price level",
      "type": "string",
      "example": "1.5"
    }
  }
}
```

## Referenced By

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