{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetPersonPlaceVirtualLineCallPickupObject", "title": "GetPersonPlaceVirtualLineCallPickupObject", "type": "object", "required": [ "id", "firstName", "lastName", "displayName", "type", "email" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS80NDVkMzMzMC1mNjE3LTExZWItOWQyZS01NzViODE3ZGE1NmE", "description": "ID of a person, workspace or virtual line." }, "firstName": { "type": "string", "example": "John", "description": "First name of a person, workspace or virtual line." }, "lastName": { "type": "string", "example": "Brown", "description": "Last name of a person, workspace or virtual line." }, "displayName": { "type": "string", "example": "johnBrown", "description": "Display name of a person, workspace or virtual line." }, "type": { "type": "string", "enum": [ "PEOPLE", "PLACE", "VIRTUAL_LINE" ], "description": "Type of the person, workspace or virtual line.\n * `PEOPLE` - Indicates that this object is a user.\n * `PLACE` - Indicates that this object is a place.\n * `VIRTUAL_LINE` - Indicates that this object is a virtual line.\n" }, "email": { "type": "string", "example": "john.brown@example.com", "description": "Email of a person, workspace or virtual line." }, "phoneNumber": { "type": "array", "items": { "$ref": "#/components/schemas/GetUserNumberItemObject" }, "description": "List of phone numbers of a person, workspace or virtual line." } } }