{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallPickupGroupMember", "title": "CallPickupGroupMember", "type": "object", "description": "Represents a member of a call pickup group.", "example": { "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU", "type": "PEOPLE", "firstName": "John", "lastName": "Doe", "departmentName": "Electric", "directNumber": "+19075551234", "extension": "1234", "email": "abc@gmail.com" }, "required": [ "id", "type", "firstName", "lastName", "departmentName", "email" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU", "description": "Unique identifier for the member." }, "type": { "$ref": "#/components/schemas/MemberType" }, "firstName": { "type": "string", "example": "John", "description": "First name of the member." }, "lastName": { "type": "string", "example": "Doe", "description": "Last name of the member." }, "departmentName": { "type": "string", "example": "Electric", "description": "Department name of the member." }, "directNumber": { "type": "string", "example": "+19075551234", "description": "Direct number of the member." }, "extension": { "type": "string", "example": "1234", "description": "Extension of the member." }, "email": { "type": "string", "example": "abc@gmail.com", "description": "Email address of the member." } } }