{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/streaming-platform-create-radio-session-request-schema.json", "title": "CreateRadioSessionRequest", "description": "CreateRadioSessionRequest schema from 7digital API", "type": "object", "properties": { "userId": { "type": "string", "description": "User the session is created for.", "example": "500123" }, "playlistIds": { "type": "array", "items": { "type": "string" }, "example": [ "playlist-789012" ] }, "ruleset": { "type": "string", "enum": [ "dmca", "gvl", "custom" ], "example": "dmca" }, "country": { "type": "string", "minLength": 2, "maxLength": 2, "example": "GB" } }, "required": [ "userId", "playlistIds" ] }