Siemens MindSphere · Schema

AspectTypeCreate

IoTIndustrialDigital TwinTime SeriesAsset ManagementIndustrial IoTInsights Hub

Properties

Name Type Description
name string
description string
category string
scope string
variables array
View JSON Schema on GitHub

JSON Schema

siemens-mindsphere-aspecttypecreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AspectTypeCreate",
  "title": "AspectTypeCreate",
  "type": "object",
  "required": [
    "name",
    "category",
    "variables"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "category": {
      "type": "string",
      "enum": [
        "static",
        "dynamic"
      ]
    },
    "scope": {
      "type": "string",
      "enum": [
        "private",
        "public"
      ],
      "default": "private"
    },
    "variables": {
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/VariableDefinition"
      }
    }
  }
}