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

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

# Deal

Synthesized deal object. ``id`` is a stable hash of the internal deal identity (never the raw sequential integer); ``name`` is synthesized from street name + issue date + instrument type since there is no human-readable deal-name field upstream.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Covenant Data API
  version: 0.7.0
servers:
  - url: https://api.9fin.com
components:
  schemas:
    Deal:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
      type: object
      required:
        - id
        - name
      title: Deal
      description: |-
        Synthesized deal object.

        ``id`` is a stable hash of the internal deal identity (never the raw
        sequential integer); ``name`` is synthesized from street name + issue
        date + instrument type since there is no human-readable deal-name field
        upstream.
```
