PropertyResponse

An object that contains information about a property response.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
definition object
value object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-property-response-schema.json Raw ↑
{
  "$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-response-schema.json",
  "title": "PropertyResponse",
  "description": "An object that contains information about a property response.",
  "type": "object",
  "properties": {
    "definition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PropertyDefinitionResponse"
        },
        {
          "description": "An object that specifies information about a property."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DataValue"
        },
        {
          "description": "The value of the property."
        }
      ]
    }
  }
}