7digital · JSON Structure

Streaming Platform Create User Request Structure

CreateUserRequest schema from 7digital API

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

CreateUserRequest 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

email password firstName lastName country

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-create-user-request-structure.json",
  "name": "CreateUserRequest",
  "description": "CreateUserRequest schema from 7digital API",
  "properties": {
    "email": {
      "type": "string",
      "example": "jane.smith@example.com"
    },
    "password": {
      "type": "string",
      "example": "P@ssw0rd123!"
    },
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Smith"
    },
    "country": {
      "type": "string",
      "example": "GB"
    }
  },
  "required": [
    "email",
    "password",
    "country"
  ]
}