---
title: "FeedSummary"
url: "https://console.9fin.com/apis/clo-api/versions/221fee01-d90e-4b49-9e39-50dbcbf0d81c/schemas/FeedSummary"
---

> Full API specification: https://console.9fin.com/apis/clo-api/versions/221fee01-d90e-4b49-9e39-50dbcbf0d81c.md

# FeedSummary

Lightweight snapshot of in-market CLO feed freshness.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin CLO API
  version: 0.11.0
servers:
  - description: Production environment
    url: https://api.9fin.com
components:
  schemas:
    ChangedSince:
      description: Rows changed since the caller's watermark.
      properties:
        clos:
          description: CLO deal rows with updated_at >= since.
          title: Clos
          type: integer
        tranches:
          description: Tranche rows with updated_at >= since.
          title: Tranches
          type: integer
      required:
        - clos
        - tranches
      title: ChangedSince
      type: object
    ResourceSummary:
      description: Freshness snapshot for one in-market feed resource.
      properties:
        latest_updated_at:
          anyOf:
            - format: date-time
              type: string
            - type: "null"
          description: Most recent updated_at timestamp across matching rows (UTC), if any.
          title: Latest Updated At
      title: ResourceSummary
      type: object
    FeedSummary:
      description: Lightweight snapshot of in-market CLO feed freshness.
      properties:
        changed_since:
          anyOf:
            - $ref: "#/components/schemas/ChangedSince"
            - type: "null"
          description: Change counts since the since query param; null when since is
            omitted.
        clos:
          $ref: "#/components/schemas/ResourceSummary"
        tranches:
          $ref: "#/components/schemas/ResourceSummary"
      required:
        - clos
        - tranches
      title: FeedSummary
      type: object
```
