PropertyRequests

PropertyRequests schema

3D VisualizationDigital TwinIndustrial IoTIoT
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-property-requests-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-requests-schema.json",
  "title": "PropertyRequests",
  "description": "PropertyRequests schema",
  "type": "object",
  "additionalProperties": {
    "type": "object",
    "properties": {
      "definition": {
        "allOf": [
          {
            "$ref": "#/components/schemas/PropertyDefinitionRequest"
          },
          {
            "description": "An object that specifies information about a property."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DataValue"
          },
          {
            "description": "The value of the property."
          }
        ]
      },
      "updateType": {
        "allOf": [
          {
            "$ref": "#/components/schemas/PropertyUpdateType"
          },
          {
            "description": "The update type of the update property request."
          }
        ]
      }
    },
    "description": "An object that sets information about a property."
  }
}