Writable fields for creating or updating a user
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "WriteUser", "type": "object", "description": "Writable fields for creating or updating a user", "properties": { "first_name": { "type": "string", "description": "First name" }, "last_name": { "type": "string", "description": "Last name" }, "email": { "type": "string", "description": "Email address" }, "is_disabled": { "type": "boolean", "description": "Whether the account is disabled" }, "locale": { "type": "string", "description": "Locale setting" } } }