{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CDRResponse", "title": "CDRResponse", "type": "object", "properties": { "items": { "type": "array", "description": "Array of detailed call history records", "items": { "$ref": "#/components/schemas/CDR" } } }, "example": { "items": [ { "Report ID": "0a0c2eb7-f1f6-3326-86f9-565d2e11553d", "Report time": "2020-05-14T11:01:52.723Z", "Call ID": "[email protected]", "User": "John Andersen", "Duration": 36 } ] } }