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