SolarWinds · Schema

CheckList

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
checks array
counts object
View JSON Schema on GitHub

JSON Schema

solarwinds-checklist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CheckList",
  "title": "CheckList",
  "type": "object",
  "properties": {
    "checks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Check"
      },
      "example": []
    },
    "counts": {
      "type": "object",
      "properties": {
        "total": {
          "type": "integer"
        },
        "limited": {
          "type": "integer"
        },
        "filtered": {
          "type": "integer"
        }
      },
      "example": "example_value"
    }
  }
}