Vertiv · Schema

Asset

An IT asset tracked in the Environet system

Critical InfrastructureData CenterDCIMInfrastructure MonitoringPower ManagementUPS

Properties

Name Type Description
assetId string Unique asset identifier
assetName string Asset display name
rackName string Rack the asset is mounted in
siteName string Site location
assetType string Type of asset (server, switch, etc.)
status object
View JSON Schema on GitHub

JSON Schema

vertiv-asset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Asset",
  "title": "Asset",
  "type": "object",
  "description": "An IT asset tracked in the Environet system",
  "properties": {
    "assetId": {
      "type": "string",
      "description": "Unique asset identifier"
    },
    "assetName": {
      "type": "string",
      "description": "Asset display name"
    },
    "rackName": {
      "type": "string",
      "description": "Rack the asset is mounted in"
    },
    "siteName": {
      "type": "string",
      "description": "Site location"
    },
    "assetType": {
      "type": "string",
      "description": "Type of asset (server, switch, etc.)"
    },
    "status": {
      "$ref": "#/components/schemas/StatusSummary"
    }
  }
}