{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "user", "type": "object", "properties": { "id": { "description": "Unique identifier for the user.", "type": "integer" }, "username": { "description": "Login name for the user.", "type": "string", "required": true }, "name": { "description": "Display name for the user.", "type": "string" }, "first_name": { "description": "First name for the user.", "type": "string" }, "last_name": { "description": "Last name for the user.", "type": "string" }, "email": { "description": "The email address for the user.", "type": "string", "format": "email", "required": true }, "url": { "description": "URL of the user.", "type": "string", "format": "uri" }, "description": { "description": "Description of the user.", "type": "string" }, "link": { "description": "Author URL of the user.", "type": "string", "format": "uri" }, "locale": { "description": "Locale for the user.", "type": "string", "enum": [ "", "en_US" ] }, "nickname": { "description": "The nickname for the user.", "type": "string" }, "slug": { "description": "An alphanumeric identifier for the user.", "type": "string" }, "registered_date": { "description": "Registration date for the user.", "type": "string", "format": "date-time" }, "roles": { "description": "Roles assigned to the user.", "type": "array", "items": { "type": "string" } }, "password": { "description": "Password for the user (never included).", "type": "string", "required": true }, "capabilities": { "description": "All capabilities assigned to the user.", "type": "object" }, "extra_capabilities": { "description": "Any extra capabilities assigned to the user.", "type": "object" }, "avatar_urls": { "description": "Avatar URLs for the user.", "type": "object", "properties": { "24": { "description": "Avatar URL with image size of 24 pixels.", "type": "string", "format": "uri" }, "48": { "description": "Avatar URL with image size of 48 pixels.", "type": "string", "format": "uri" }, "96": { "description": "Avatar URL with image size of 96 pixels.", "type": "string", "format": "uri" } } }, "meta": { "description": "Meta fields.", "type": "object", "properties": { "persisted_preferences": { "type": "object", "title": "", "description": "", "default": [], "properties": { "_modified": { "description": "The date and time the preferences were updated.", "type": "string", "format": "date-time" } }, "additionalProperties": true } } } }, "x-source": "HTTP OPTIONS https://ionetix.com/wp-json/wp/v2/users", "x-fetched": "2026-08-23" }