---
title: "DebtSecurity"
url: "https://console.9fin.com/apis/instruments-private-credit/versions/0a7cc486-1d5a-439d-bde2-7d398e87f4ee/schemas/DebtSecurity"
---

> Full API specification: https://console.9fin.com/apis/instruments-private-credit/versions/0a7cc486-1d5a-439d-bde2-7d398e87f4ee.md

# DebtSecurity

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9Fin Instruments (Private Credit) API
  version: 0.1.10
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    DebtType:
      enum:
        - fixed
        - floating
        - N/A
      title: DebtType
      type: string
    DebtSecurity:
      properties:
        abbreviation:
          description: Common abbreviation for the debt security type (e.g. TLB).
          title: Abbreviation
          type: string
        name:
          description: Full name of the debt security type (e.g. Term Loan B).
          title: Name
          type: string
        type:
          $ref: "#/components/schemas/DebtType"
          description: Interest-rate type of the security (fixed, floating, or N/A).
      required:
        - name
        - abbreviation
        - type
      title: DebtSecurity
      type: object
```
