7digital · Schema

UserUpdateRequest

UserUpdateRequest schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

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

JSON Schema

api-user-update-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-update-request-schema.json",
  "title": "UserUpdateRequest",
  "description": "UserUpdateRequest schema from 7digital API",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Smith"
    },
    "country": {
      "type": "string",
      "example": "GB"
    }
  }
}