Outbrain · Schema

Outbrain Engage Recommendation

A single content recommendation returned by the Outbrain Engage API for rendering in a publisher widget.

AdvertisingNative AdvertisingOpen WebCTVConnected TVVideo AdvertisingContent DiscoveryProgrammaticPerformance MarketingAdTechTeads

Properties

Name Type Description
id string
content string Headline text of the recommendation.
url string
thumbnail object
origin string
source_name string
publish_date string
disclosure object
View JSON Schema on GitHub

JSON Schema

outbrain-recommendation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/outbrain/main/json-schema/outbrain-recommendation-schema.json",
  "title": "Outbrain Engage Recommendation",
  "description": "A single content recommendation returned by the Outbrain Engage API for rendering in a publisher widget.",
  "type": "object",
  "required": ["id", "content", "url", "origin"],
  "properties": {
    "id": { "type": "string" },
    "content": { "type": "string", "description": "Headline text of the recommendation." },
    "url": { "type": "string", "format": "uri" },
    "thumbnail": {
      "type": "object",
      "properties": {
        "url": { "type": "string", "format": "uri" },
        "width": { "type": "integer" },
        "height": { "type": "integer" }
      }
    },
    "origin": { "type": "string", "enum": ["ORGANIC", "PAID"] },
    "source_name": { "type": "string" },
    "publish_date": { "type": "string", "format": "date-time" },
    "disclosure": {
      "type": "object",
      "properties": {
        "informationUrl": { "type": "string", "format": "uri" },
        "prefix": { "type": "string" }
      }
    }
  }
}