{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserUpdate", "title": "UserUpdate", "type": "object", "description": "Properties that can be updated on an existing user.", "properties": { "accountEnabled": { "type": "boolean", "example": true }, "displayName": { "type": "string", "example": "example_value" }, "givenName": { "type": "string", "example": "example_value" }, "surname": { "type": "string", "example": "example_value" }, "jobTitle": { "type": "string", "example": "example_value" }, "department": { "type": "string", "example": "example_value" }, "mail": { "type": "string", "example": "example_value" }, "mobilePhone": { "type": "string", "example": "example_value" }, "businessPhones": { "type": "array", "items": { "type": "string" }, "example": [] }, "city": { "type": "string", "example": "example_value" }, "state": { "type": "string", "example": "example_value" }, "country": { "type": "string", "example": "example_value" }, "postalCode": { "type": "string", "example": "example_value" }, "streetAddress": { "type": "string", "example": "example_value" }, "officeLocation": { "type": "string", "example": "example_value" }, "usageLocation": { "type": "string", "example": "example_value" }, "passwordProfile": { "$ref": "#/components/schemas/PasswordProfile" }, "preferredLanguage": { "type": "string", "example": "example_value" }, "employeeId": { "type": "string", "example": "500123" }, "employeeType": { "type": "string", "example": "example_value" }, "companyName": { "type": "string", "example": "example_value" } } }