7digital · Schema

CreateUserRequest

CreateUserRequest schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
email string
password string
firstName string
lastName string
country string
View JSON Schema on GitHub

JSON Schema

streaming-platform-create-user-request-schema.json Raw ↑
{
  "$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-user-request-schema.json",
  "title": "CreateUserRequest",
  "description": "CreateUserRequest schema from 7digital API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "password": {
      "type": "string",
      "format": "password",
      "example": "P@ssw0rd123!"
    },
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Smith"
    },
    "country": {
      "type": "string",
      "example": "GB"
    }
  },
  "required": [
    "email",
    "password",
    "country"
  ]
}