Warner Music Group · Schema

Warner Music Group License

Schema for a WMG music license request.

MusicEntertainmentStreamingLicensingPublishing

Properties

Name Type Description
id string Unique license request identifier
status string Current license status
licenseType string Type of music license
trackIsrc string ISRC of the licensed recording
trackTitle string Licensed track title
artistName string Recording artist name
useCase string Description of intended use
territory string License territory (ISO 3166 country code or WORLD)
startDate string License start date
endDate string License end date
exclusivity boolean Whether exclusive rights were requested
fee number License fee in USD
submittedAt string License request submission timestamp
View JSON Schema on GitHub

JSON Schema

warner-music-group-license-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://github.com/api-evangelist/warner-music-group/blob/main/json-schema/warner-music-group-license-schema.json",
  "title": "Warner Music Group License",
  "description": "Schema for a WMG music license request.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique license request identifier"
    },
    "status": {
      "type": "string",
      "enum": ["pending", "approved", "rejected", "expired"],
      "description": "Current license status"
    },
    "licenseType": {
      "type": "string",
      "enum": ["sync", "mechanical", "digital", "performance"],
      "description": "Type of music license"
    },
    "trackIsrc": {
      "type": "string",
      "description": "ISRC of the licensed recording"
    },
    "trackTitle": {
      "type": "string",
      "description": "Licensed track title"
    },
    "artistName": {
      "type": "string",
      "description": "Recording artist name"
    },
    "useCase": {
      "type": "string",
      "description": "Description of intended use"
    },
    "territory": {
      "type": "string",
      "description": "License territory (ISO 3166 country code or WORLD)"
    },
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "License start date"
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "description": "License end date"
    },
    "exclusivity": {
      "type": "boolean",
      "description": "Whether exclusive rights were requested",
      "default": false
    },
    "fee": {
      "type": "number",
      "description": "License fee in USD"
    },
    "submittedAt": {
      "type": "string",
      "format": "date-time",
      "description": "License request submission timestamp"
    }
  },
  "required": ["trackIsrc", "licenseType", "territory", "startDate", "endDate"]
}