7digital · JSON Structure

Streaming Platform Device Authorisation Request Structure

DeviceAuthorisationRequest schema from 7digital API

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

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

Properties

deviceId deviceName platform

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-device-authorisation-request-structure.json",
  "name": "DeviceAuthorisationRequest",
  "description": "DeviceAuthorisationRequest schema from 7digital API",
  "properties": {
    "deviceId": {
      "type": "string",
      "example": "device-789012"
    },
    "deviceName": {
      "type": "string",
      "example": "Jane's iPhone"
    },
    "platform": {
      "type": "string",
      "enum": [
        "ios",
        "android",
        "web",
        "windows",
        "macos"
      ],
      "example": "ios"
    }
  },
  "required": [
    "deviceId"
  ]
}