Siemens MindSphere · Schema

TimeseriesDataPoint

IoTIndustrialDigital TwinTime SeriesAsset ManagementIndustrial IoTInsights Hub

Properties

Name Type Description
_time string ISO 8601 UTC timestamp for the data point
View JSON Schema on GitHub

JSON Schema

siemens-mindsphere-timeseriesdatapoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeseriesDataPoint",
  "title": "TimeseriesDataPoint",
  "type": "object",
  "required": [
    "_time"
  ],
  "properties": {
    "_time": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 UTC timestamp for the data point",
      "example": "2026-01-01T00:00:00.000Z"
    }
  },
  "additionalProperties": {
    "description": "Variable values keyed by variable name. Variable types are defined in the aspect configuration (DOUBLE, LONG, BOOLEAN, STRING, BIG_STRING, INT, TIMESTAMP).",
    "oneOf": [
      {
        "type": "number"
      },
      {
        "type": "boolean"
      },
      {
        "type": "string"
      },
      {
        "type": "null"
      }
    ]
  }
}