{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallPickupGroupSettingsGet", "title": "CallPickupGroupSettingsGet", "type": "object", "description": "Represents the call pickup group settings for a user.", "example": { "groupName": "Business Agents Call Pickup", "memberList": [ { "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU", "type": "PEOPLE", "firstName": "John", "lastName": "Doe", "departmentName": "Electric", "directNumber": "+19075551234", "extension": "1234", "email": "abc@gmail.com" } ] }, "required": [ "groupName", "memberList" ], "properties": { "groupName": { "type": "string", "example": "Business Agents Call Pickup", "description": "Name of the call pickup group." }, "memberList": { "type": "array", "items": { "$ref": "#/components/schemas/CallPickupGroupMember" }, "description": "List of members in the call pickup group." } } }