Siemens MindSphere · Schema

AspectType

IoTIndustrialDigital TwinTime SeriesAsset ManagementIndustrial IoTInsights Hub

Properties

Name Type Description
id string Aspect type identifier (tenant.name)
name string
description string
category string static=configuration data, dynamic=time-series telemetry
scope string
variables array
View JSON Schema on GitHub

JSON Schema

siemens-mindsphere-aspecttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AspectType",
  "title": "AspectType",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Aspect type identifier (tenant.name)"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "category": {
      "type": "string",
      "enum": [
        "static",
        "dynamic"
      ],
      "description": "static=configuration data, dynamic=time-series telemetry"
    },
    "scope": {
      "type": "string",
      "enum": [
        "private",
        "public"
      ]
    },
    "variables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VariableDefinition"
      }
    }
  }
}