Siemens · Schema

TrendData

AutomationElectrificationIndustryManufacturingBuilding AutomationIndustrial IoTSmart BuildingsDigital Twin

Properties

Name Type Description
pointId string
from string
to string
values array
View JSON Schema on GitHub

JSON Schema

siemens-trenddata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrendData",
  "title": "TrendData",
  "type": "object",
  "properties": {
    "pointId": {
      "type": "string"
    },
    "from": {
      "type": "string",
      "format": "date-time"
    },
    "to": {
      "type": "string",
      "format": "date-time"
    },
    "values": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PointValue"
      }
    }
  }
}