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

# LiquidationLevelBucket Schema

> One price bucket of projected forced-liquidation exposure. Includes parameters, response shapes, examples, and implementation notes from the 0xArchive contract.

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

One price bucket of projected forced-liquidation exposure.

## Required Fields

| Field            | Type    | Description                                                            |
| ---------------- | ------- | ---------------------------------------------------------------------- |
| `long_count`     | integer | Number of long positions in this bucket.                               |
| `long_notional`  | number  | USD notional of long positions projected to liquidate in this bucket.  |
| `price`          | number  | Bucket center price.                                                   |
| `short_count`    | integer | Number of short positions in this bucket.                              |
| `short_notional` | number  | USD notional of short positions projected to liquidate in this bucket. |

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LiquidationLevelBucket",
  "description": "One price bucket of projected forced-liquidation exposure.",
  "type": "object",
  "required": [
    "long_count",
    "long_notional",
    "price",
    "short_count",
    "short_notional"
  ],
  "properties": {
    "long_count": {
      "description": "Number of long positions in this bucket.",
      "type": "integer"
    },
    "long_notional": {
      "description": "USD notional of long positions projected to liquidate in this bucket.",
      "type": "number"
    },
    "price": {
      "description": "Bucket center price.",
      "type": "number"
    },
    "short_count": {
      "description": "Number of short positions in this bucket.",
      "type": "integer"
    },
    "short_notional": {
      "description": "USD notional of short positions projected to liquidate in this bucket.",
      "type": "number"
    }
  }
}
```

## Referenced By

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