Datadog · JSON Structure

Datadog Logs Logs List Response Structure

Response containing matching log events from a search query

Type: object Properties: 2
AnalyticsDashboardsMonitoringPlatformT1Visualizations

LogsListResponse is a JSON Structure definition published by Datadog, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

data meta

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
          ]
        }
      }
    }
  }
}