Siemens · Schema

SetPointValueRequest

AutomationElectrificationIndustryManufacturingBuilding AutomationIndustrial IoTSmart BuildingsDigital Twin

Properties

Name Type Description
value object New value to set
priority integer BACnet priority level for the write command
View JSON Schema on GitHub

JSON Schema

siemens-setpointvaluerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetPointValueRequest",
  "title": "SetPointValueRequest",
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "description": "New value to set",
      "oneOf": [
        {
          "type": "number"
        },
        {
          "type": "boolean"
        },
        {
          "type": "string"
        }
      ]
    },
    "priority": {
      "type": "integer",
      "minimum": 1,
      "maximum": 16,
      "description": "BACnet priority level for the write command"
    }
  }
}