{ "$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" } } }