SolarWinds · Schema

Asset

Application MonitoringDatabase MonitoringInfrastructureIP Address ManagementIT ManagementITSMLog ManagementNetwork MonitoringObservability

Properties

Name Type Description
id integer
name string
asset_type string
serial_number string
status string
user object
created_at string
View JSON Schema on GitHub

JSON Schema

solarwinds-asset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Asset",
  "title": "Asset",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "asset_type": {
      "type": "string",
      "example": "example_value"
    },
    "serial_number": {
      "type": "string",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    },
    "user": {
      "$ref": "#/components/schemas/UserRef"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  }
}