Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Property Filters Structure

PropertyFilters schema

Type: array Properties: 0
3D VisualizationDigital TwinIndustrial IoTIoT

PropertyFilters is a JSON Structure definition published by Amazon IoT TwinMaker. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-structure/iot-twinmaker-property-filters-structure.json",
  "name": "PropertyFilters",
  "description": "PropertyFilters schema",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "propertyName": {
        "allOf": [
          {
            "$ref": "#/components/schemas/String"
          },
          {
            "description": "The property name associated with this property filter."
          }
        ]
      },
      "operator": {
        "allOf": [
          {
            "$ref": "#/components/schemas/String"
          },
          {
            "description": "The operator associated with this property filter."
          }
        ]
      },
      "value": {
        "allOf": [
          {
            "$ref": "#/components/schemas/DataValue"
          },
          {
            "description": "The value associated with this property filter."
          }
        ]
      }
    },
    "description": "An object that filters items returned by a property request."
  }
}