{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "UserUpdate", "type": "object", "description": "Properties that can be updated on an existing user.", "properties": { "accountEnabled": { "type": "boolean" }, "displayName": { "type": "string" }, "givenName": { "type": "string" }, "surname": { "type": "string" }, "jobTitle": { "type": "string" }, "department": { "type": "string" }, "mail": { "type": "string" }, "mobilePhone": { "type": "string" }, "businessPhones": { "type": "array" }, "city": { "type": "string" }, "state": { "type": "string" }, "country": { "type": "string" }, "postalCode": { "type": "string" }, "streetAddress": { "type": "string" }, "officeLocation": { "type": "string" }, "usageLocation": { "type": "string" }, "preferredLanguage": { "type": "string" }, "employeeId": { "type": "string" }, "employeeType": { "type": "string" }, "companyName": { "type": "string" } } }