{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "User", "type": "object", "description": "Represents a user account in an Atlassian organization.", "properties": { "account_id": { "type": "string", "description": "The unique Atlassian account identifier." }, "account_type": { "type": "string", "description": "The type of account." }, "account_status": { "type": "string", "description": "The current status of the account." }, "name": { "type": "string", "description": "The display name of the user." }, "email": { "type": "string", "description": "The email address of the user." }, "picture": { "type": "string", "description": "URL of the user's profile picture." }, "nickname": { "type": "string", "description": "The nickname of the user." }, "last_active": { "type": "string", "description": "The last time the user was active." }, "created": { "type": "string", "description": "When the user account was created." }, "product_access": { "type": "array", "description": "Products the user has access to." } } }