{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountCreateRequest", "title": "AccountCreateRequest", "required": [ "email_address" ], "properties": { "client_id": { "description": "_t__AccountCreate::CLIENT_ID", "type": "string" }, "client_secret": { "description": "_t__AccountCreate::CLIENT_SECRET", "type": "string" }, "email_address": { "description": "_t__AccountCreate::EMAIL_ADDRESS", "type": "string", "format": "email" }, "locale": { "description": "_t__AccountCreate::LOCALE", "type": "string" } }, "type": "object" }