7digital · Schema

UserSignupRequest

UserSignupRequest 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

api-user-signup-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/api-user-signup-request-schema.json",
  "title": "UserSignupRequest",
  "description": "UserSignupRequest 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"
  ]
}