{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdatePersonRequest", "title": "UpdatePersonRequest", "type": "object", "properties": { "emails": { "type": "array", "items": { "type": "string", "format": "email" } }, "displayName": { "type": "string" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "avatar": { "type": "string", "format": "uri" }, "orgId": { "type": "string" }, "roles": { "type": "array", "items": { "type": "string" } }, "licenses": { "type": "array", "items": { "type": "string" } }, "department": { "type": "string" }, "manager": { "type": "string" }, "managerId": { "type": "string" }, "title": { "type": "string" }, "addresses": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "streetAddress": { "type": "string" }, "locality": { "type": "string" }, "region": { "type": "string" }, "postalCode": { "type": "string" }, "country": { "type": "string" } } } }, "phoneNumbers": { "type": "array", "items": { "type": "object", "properties": { "type": { "type": "string" }, "value": { "type": "string" } } } }, "extension": { "type": "string" }, "locationId": { "type": "string" }, "loginEnabled": { "type": "boolean" } } }