Siemens MindSphere · Schema

AssetUpdate

IoTIndustrialDigital TwinTime SeriesAsset ManagementIndustrial IoTInsights Hub

Properties

Name Type Description
name string
description string
timezone string
location object
variables array
View JSON Schema on GitHub

JSON Schema

siemens-mindsphere-assetupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssetUpdate",
  "title": "AssetUpdate",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "location": {
      "$ref": "#/components/schemas/Location"
    },
    "variables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VariableValue"
      }
    }
  }
}