---
title: "ValuationInstrument"
url: "https://console.9fin.com/apis/bdc/versions/6a9605ac-8bcf-48e9-98dc-483d291112fd/schemas/ValuationInstrument"
---

> Full API specification: https://console.9fin.com/apis/bdc/versions/6a9605ac-8bcf-48e9-98dc-483d291112fd.md

# ValuationInstrument

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9Fin BDCs API
  version: 0.1.6
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    HoldingFlag:
      enum:
        - Non-accrual
        - PIK
      title: HoldingFlag
      type: string
    ValuationInstrument:
      properties:
        description:
          title: Description
          type: string
        fair_value:
          anyOf:
            - type: number
            - type: "null"
          title: Fair Value
        fair_value_ratio:
          anyOf:
            - type: number
            - type: "null"
          title: Fair Value Ratio
        labels:
          items:
            $ref: "#/components/schemas/HoldingFlag"
          title: Labels
          type: array
        principal_balance:
          anyOf:
            - type: number
            - type: "null"
          title: Principal Balance
      required:
        - description
        - fair_value_ratio
        - fair_value
        - principal_balance
        - labels
      title: ValuationInstrument
      type: object
```
