{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CallParkMember", "title": "CallParkMember", "type": "object", "description": "Represents a member of a call park group.", "example": { "id": "Y2lzY29zcGFyazovL3VzL1ZJUlRVQUxfTElORS85M2I0NDkyMi1mZTlmLTExZWItYTRiOC0zMzYyN2JlZDY3YjY", "type": "VIRTUAL_LINE", "firstName": "Smith", "lastName": "Bob", "displayName": "Smith Bob" }, "required": [ "id", "type", "displayName" ], "properties": { "id": { "type": "string", "example": "Y2lzY29zcGFyazovL3VybjpURUFNOnVzLWVhc3QtMV9pbnQxMy9DQUxMSU5HX0RFVklDRS85MGQyMmM0Yy0wMGI3LTQ4YzAtYjUwNi0yM2UwY2E2MTlkYmM", "description": "Unique identifier of the member." }, "type": { "$ref": "#/components/schemas/MemberType" }, "firstName": { "type": "string", "example": "doe", "description": "First name of the member." }, "lastName": { "type": "string", "example": "John", "description": "Last name of the member." }, "displayName": { "type": "string", "example": "John Doe", "description": "Display name of the member." } } }