Reuters · Schema

Reuters Connect Rendition

A specific rendition or format of a media item from the Reuters Connect API. Renditions represent different sizes, resolutions, or formats of the same content available for download. Images may have thumbnail, preview, and full-size renditions, while video may have different quality levels and formats.

BusinessFinanceJournalismMediaNewsWire Service

Properties

Name Type Description
name string The name or label of the rendition indicating its purpose or size class.
href string The URL to download this rendition of the content. Requires a valid authentication token to access.
mimetype string The MIME type of the rendition file, indicating the file format.
width integer The width of the rendition in pixels. Applicable to image and video renditions.
height integer The height of the rendition in pixels. Applicable to image and video renditions.
sizeinbytes integer The file size of the rendition in bytes.
duration number The duration of the rendition in seconds. Applicable to video and audio renditions.
format string The specific format or codec of the rendition, providing additional detail beyond the MIME type.
View JSON Schema on GitHub

JSON Schema

reuters-rendition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/kinlane/reuters/json-schema/reuters-rendition-schema.json",
  "title": "Reuters Connect Rendition",
  "description": "A specific rendition or format of a media item from the Reuters Connect API. Renditions represent different sizes, resolutions, or formats of the same content available for download. Images may have thumbnail, preview, and full-size renditions, while video may have different quality levels and formats.",
  "type": "object",
  "required": [
    "name",
    "href",
    "mimetype"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name or label of the rendition indicating its purpose or size class.",
      "examples": [
        "thumbnail",
        "preview",
        "baseImage",
        "hires",
        "videoFile",
        "webReadyVideo"
      ]
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "The URL to download this rendition of the content. Requires a valid authentication token to access."
    },
    "mimetype": {
      "type": "string",
      "description": "The MIME type of the rendition file, indicating the file format.",
      "examples": [
        "image/jpeg",
        "image/png",
        "image/gif",
        "video/mp4",
        "video/quicktime",
        "application/pdf",
        "text/html"
      ]
    },
    "width": {
      "type": "integer",
      "description": "The width of the rendition in pixels. Applicable to image and video renditions.",
      "minimum": 1,
      "examples": [
        150,
        640,
        1920,
        3000
      ]
    },
    "height": {
      "type": "integer",
      "description": "The height of the rendition in pixels. Applicable to image and video renditions.",
      "minimum": 1,
      "examples": [
        100,
        480,
        1080,
        2000
      ]
    },
    "sizeinbytes": {
      "type": "integer",
      "description": "The file size of the rendition in bytes.",
      "minimum": 0,
      "examples": [
        15360,
        102400,
        5242880
      ]
    },
    "duration": {
      "type": "number",
      "description": "The duration of the rendition in seconds. Applicable to video and audio renditions.",
      "minimum": 0
    },
    "format": {
      "type": "string",
      "description": "The specific format or codec of the rendition, providing additional detail beyond the MIME type.",
      "examples": [
        "JPEG",
        "PNG",
        "H.264",
        "MPEG-4"
      ]
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/reuters-rendition"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.