{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-property-latest-value-map-schema.json", "title": "PropertyLatestValueMap", "description": "PropertyLatestValueMap schema", "type": "object", "additionalProperties": { "type": "object", "required": [ "propertyReference" ], "properties": { "propertyReference": { "allOf": [ { "$ref": "#/components/schemas/EntityPropertyReference" }, { "description": "An object that specifies information about a property." } ] }, "propertyValue": { "allOf": [ { "$ref": "#/components/schemas/DataValue" }, { "description": "The value of the property." } ] } }, "description": "The latest value of the property." } }