{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserCallParkSettingsGetResponseObject", "title": "UserCallParkSettingsGetResponseObject", "type": "object", "description": "Represents the call park settings for a user.", "example": { "groupName": "technical support - cards - customer 1", "memberList": [ { "id": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS82ZTU1NWNkMC02MzQxLTQyYjgtYTIxYy1lNzVmMjE0NDgyNzU", "type": "PEOPLE", "firstName": "John", "lastName": "Doe", "displayName": "John Doe" }, { "id": "Y2lzY29zcGFyazovL3VzL1BMQUNFLzgzYjQ0OTIyLWZlOWYtMTFlYi1hNGI4LTMzNjI3YmVkNjdiNQ", "type": "PLACE", "displayName": "Jack Hughes" }, { "id": "Y2lzY29zcGFyazovL3VzL1ZJUlRVQUxfTElORS85M2I0NDkyMi1mZTlmLTExZWItYTRiOC0zMzYyN2JlZDY3YjY", "type": "VIRTUAL_LINE", "firstName": "Smith", "lastName": "Bob", "displayName": "Bob Smith" } ] }, "required": [ "groupName", "memberList" ], "properties": { "groupName": { "type": "string", "example": "technical support - cards - customer 1", "description": "Unique name for the call park. The maximum length is 80.." }, "memberList": { "type": "array", "items": { "$ref": "#/components/schemas/CallParkMember" }, "description": "List of members in the call park group." } } }