SolarWinds · Schema

ProbeList

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
probes array
View JSON Schema on GitHub

JSON Schema

solarwinds-probelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProbeList",
  "title": "ProbeList",
  "type": "object",
  "properties": {
    "probes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer"
          },
          "country": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "active": {
            "type": "boolean"
          },
          "hostname": {
            "type": "string"
          },
          "ip": {
            "type": "string"
          },
          "ipv6": {
            "type": "string"
          }
        }
      },
      "example": []
    }
  }
}