7digital · Schema

EditorialItem

EditorialItem schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
id string
title string
description string
type string
url string
image string
View JSON Schema on GitHub

JSON Schema

api-editorial-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/api-editorial-item-schema.json",
  "title": "EditorialItem",
  "description": "EditorialItem schema from 7digital API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "editorial-789012"
    },
    "title": {
      "type": "string",
      "example": "New Releases This Week"
    },
    "description": {
      "type": "string",
      "example": "Our pick of the freshest releases this week."
    },
    "type": {
      "type": "string",
      "enum": [
        "feature",
        "banner",
        "slot"
      ],
      "example": "feature"
    },
    "url": {
      "type": "string",
      "format": "uri",
      "example": "https://uk.7digital.com/editorial/new-releases-this-week"
    },
    "image": {
      "type": "string",
      "format": "uri",
      "example": "https://artwork-cdn.7static.com/static/img/editorial/789012.jpg"
    }
  }
}