---
title: "Range"
url: "https://console.9fin.com/apis/covenants-service/versions/d54352ff-53e9-48ef-9f3e-d1bf83d9fca7/schemas/Range"
---

> Full API specification: https://console.9fin.com/apis/covenants-service/versions/d54352ff-53e9-48ef-9f3e-d1bf83d9fca7.md

# Range

Anonymised numeric bucket, e.g. amount/EBITDA ranges.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Covenant Data API
  version: 0.7.0
servers:
  - url: https://api.9fin.com
components:
  schemas:
    Range:
      properties:
        min:
          anyOf:
            - type: number
            - type: "null"
          title: Min
        max:
          anyOf:
            - type: number
            - type: "null"
          title: Max
      type: object
      title: Range
      description: Anonymised numeric bucket, e.g. amount/EBITDA ranges.
```
