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

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

# Terms

## 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.
    Terms:
      properties:
        amount:
          anyOf:
            - $ref: "#/components/schemas/Range"
            - type: "null"
        coupon:
          anyOf:
            - type: number
            - type: "null"
          title: Coupon
        issue_date:
          anyOf:
            - type: string
              format: date
            - type: "null"
          title: Issue Date
        maturity:
          anyOf:
            - type: string
              format: date
            - type: "null"
          title: Maturity
        issue_price:
          anyOf:
            - type: number
            - type: "null"
          title: Issue Price
        non_call:
          anyOf:
            - type: string
            - type: "null"
          title: Non Call
      type: object
      title: Terms
```
