Siemens · Schema

Equipment

AutomationElectrificationIndustryManufacturingBuilding AutomationIndustrial IoTSmart BuildingsDigital Twin

Properties

Name Type Description
id string Unique equipment identifier
name string Equipment name
type string Equipment type (e.g., AHU, Chiller, Boiler)
description string Equipment description
location string Physical location within the building
status string Current operational status
View JSON Schema on GitHub

JSON Schema

siemens-equipment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Equipment",
  "title": "Equipment",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique equipment identifier"
    },
    "name": {
      "type": "string",
      "description": "Equipment name"
    },
    "type": {
      "type": "string",
      "description": "Equipment type (e.g., AHU, Chiller, Boiler)"
    },
    "description": {
      "type": "string",
      "description": "Equipment description"
    },
    "location": {
      "type": "string",
      "description": "Physical location within the building"
    },
    "status": {
      "type": "string",
      "enum": [
        "operational",
        "fault",
        "maintenance",
        "offline"
      ],
      "description": "Current operational status"
    }
  }
}