Siemens · Schema

PointValue

AutomationElectrificationIndustryManufacturingBuilding AutomationIndustrial IoTSmart BuildingsDigital Twin

Properties

Name Type Description
value object Current value (type depends on point type)
timestamp string When this value was recorded
quality string Data quality indicator
View JSON Schema on GitHub

JSON Schema

siemens-pointvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PointValue",
  "title": "PointValue",
  "type": "object",
  "properties": {
    "value": {
      "description": "Current value (type depends on point type)",
      "oneOf": [
        {
          "type": "number"
        },
        {
          "type": "boolean"
        },
        {
          "type": "string"
        }
      ]
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When this value was recorded"
    },
    "quality": {
      "type": "string",
      "enum": [
        "good",
        "bad",
        "uncertain"
      ],
      "description": "Data quality indicator"
    }
  }
}