SolarWinds · Schema

EventsResponse

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
total_events integer Total number of matching events
page integer Current page number
events array
View JSON Schema on GitHub

JSON Schema

solarwinds-eventsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventsResponse",
  "title": "EventsResponse",
  "type": "object",
  "properties": {
    "total_events": {
      "type": "integer",
      "description": "Total number of matching events",
      "example": 10
    },
    "page": {
      "type": "integer",
      "description": "Current page number",
      "example": 10
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LogEvent"
      },
      "example": []
    }
  }
}