{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-structure/datadog-logs-logs-list-response-structure.json", "name": "LogsListResponse", "description": "Response containing matching log events from a search query", "type": "object", "properties": { "data": { "type": "array", "description": "List of matching log events", "items": { "$ref": "#/components/schemas/Log" } }, "meta": { "type": "object", "description": "Metadata about the search response including pagination information", "properties": { "page": { "type": "object", "description": "Pagination details for continuing the search", "properties": { "after": { "type": "string", "description": "Cursor token to retrieve the next page of results" } } }, "elapsed": { "type": "int32", "description": "Time in milliseconds taken to execute the search query" }, "status": { "type": "string", "description": "Status of the search request (done, timeout)", "enum": [ "done", "timeout" ] } } } } }