7digital · JSON Structure

Streaming Platform Credit Item Request Structure

CreditItemRequest schema from 7digital API

Type: object Properties: 5 Required: 3
MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

CreditItemRequest is a JSON Structure definition published by 7digital, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

userId releaseId trackId currency price

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-credit-item-request-structure.json",
  "name": "CreditItemRequest",
  "description": "CreditItemRequest schema from 7digital API",
  "properties": {
    "userId": {
      "type": "string",
      "example": "500123"
    },
    "releaseId": {
      "type": "string",
      "example": "11700062"
    },
    "trackId": {
      "type": "string",
      "example": "123456"
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code matching the supplied wholesale price.",
      "example": "USD"
    },
    "price": {
      "type": "double",
      "description": "Retail price charged to the user.",
      "example": 9.99
    }
  },
  "required": [
    "userId",
    "currency",
    "price"
  ]
}