Datadog · Schema
LogsListResponse
Response containing matching log events from a search query
AnalyticsDashboardsMonitoringPlatformT1Visualizations
Properties
| Name | Type | Description |
|---|---|---|
| data | array | List of matching log events |
| meta | object | Metadata about the search response including pagination information |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-logs-logs-list-response-schema.json",
"title": "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": "integer",
"description": "Time in milliseconds taken to execute the search query"
},
"status": {
"type": "string",
"description": "Status of the search request (done, timeout)",
"enum": [
"done",
"timeout"
]
}
}
}
}
}