SolarWinds · Schema

User

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id integer
email string
is_admin boolean
View JSON Schema on GitHub

JSON Schema

solarwinds-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": "abc123"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "is_admin": {
      "type": "boolean",
      "example": true
    }
  }
}