{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/bettercloud/refs/heads/main/json-structure/bettercloud-user-update-request-structure.json", "name": "UserUpdateRequest", "description": "Fields to update on a user (all optional).", "type": "object", "properties": { "first_name": { "type": "string", "description": "New first name.", "example": "Jane" }, "last_name": { "type": "string", "description": "New last name.", "example": "Smith" }, "department": { "type": "string", "description": "New department.", "example": "Product" }, "title": { "type": "string", "description": "New job title.", "example": "Product Manager" }, "location": { "type": "string", "description": "New office location.", "example": "New York" } } }