SolarWinds · Schema

IterateResponse

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
events array
next string Cursor for next page of results
View JSON Schema on GitHub

JSON Schema

solarwinds-iterateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IterateResponse",
  "title": "IterateResponse",
  "type": "object",
  "properties": {
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LogEvent"
      },
      "example": []
    },
    "next": {
      "type": "string",
      "description": "Cursor for next page of results",
      "example": "example_value"
    }
  }
}