{ "$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": "jane.smith@example.com" }, "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" ] }