7digital · JSON Structure

Streaming Platform Subscription Structure

Subscription schema from 7digital API

Type: object Properties: 6
MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Subscription is a JSON Structure definition published by 7digital, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

subscriptionId userId productId status startDate endDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-structure/streaming-platform-subscription-structure.json",
  "name": "Subscription",
  "description": "Subscription schema from 7digital API",
  "properties": {
    "subscriptionId": {
      "type": "string",
      "example": "sub-789012"
    },
    "userId": {
      "type": "string",
      "example": "500123"
    },
    "productId": {
      "type": "string",
      "example": "unlimited-streaming-monthly"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "cancelled",
        "expired"
      ],
      "example": "active"
    },
    "startDate": {
      "type": "date",
      "example": "2026-05-28"
    },
    "endDate": {
      "type": "date",
      "example": "2026-06-28"
    }
  }
}