SolarWinds · Schema

EventSearchResult

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
events array
min_id string Minimum event ID in results
max_id string Maximum event ID in results
reached_beginning boolean Whether results include the earliest matching event
min_time_at string
View JSON Schema on GitHub

JSON Schema

solarwinds-eventsearchresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventSearchResult",
  "title": "EventSearchResult",
  "type": "object",
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Event"
      },
      "example": []
    },
    "min_id": {
      "type": "string",
      "description": "Minimum event ID in results",
      "example": "500123"
    },
    "max_id": {
      "type": "string",
      "description": "Maximum event ID in results",
      "example": "500123"
    },
    "reached_beginning": {
      "type": "boolean",
      "description": "Whether results include the earliest matching event",
      "example": true
    },
    "min_time_at": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}