---
title: "ContentObject"
url: "https://console.9fin.com/apis/news-api-v2/versions/d8d91da6-77d3-48db-a023-e71b20cfd311/schemas/ContentObject"
---

> Full API specification: https://console.9fin.com/apis/news-api-v2/versions/d8d91da6-77d3-48db-a023-e71b20cfd311.md

# ContentObject

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin News & Content API - v2
  version: 0.3.38
servers:
  - url: https://api.9fin.com
    description: prod
components:
  schemas:
    ContentFormat:
      type: string
      enum:
        - html
        - mkd
      title: ContentFormat
    ContentObject:
      properties:
        format:
          $ref: "#/components/schemas/ContentFormat"
        body:
          type: string
          title: Body
      type: object
      required:
        - format
        - body
      title: ContentObject
```
