Eaton · Schema

Device

An Eaton AbleEdge Smart Breaker or Green Motion EV Smart Breaker Charger as represented by the Smart Breaker API.

Power ManagementElectricalSmart BreakerEV ChargingDemand ResponseData CenterDCIMPDUUPSUtilityIndustrialBuildingMobilityAI FactoryEnergyIoTSustainability

Properties

Name Type Description
id string
locationId string
hardwareType string
sku string
serialNumber string
chargerStationId stringnull
name string
firmwareVersion string
View JSON Schema on GitHub

JSON Schema

smart-breaker-device-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/eaton/blob/main/json-schema/smart-breaker-device-schema.json",
  "title": "Device",
  "description": "An Eaton AbleEdge Smart Breaker or Green Motion EV Smart Breaker Charger as represented by the Smart Breaker API.",
  "type": "object",
  "required": ["id", "locationId", "hardwareType"],
  "properties": {
    "id": { "type": "string", "format": "uuid" },
    "locationId": { "type": "string", "format": "uuid" },
    "hardwareType": { "type": "string", "enum": ["emcb", "ev-emcb"] },
    "sku": { "type": "string" },
    "serialNumber": { "type": "string" },
    "chargerStationId": { "type": ["string", "null"] },
    "name": { "type": "string" },
    "firmwareVersion": { "type": "string" }
  }
}