OrderByList

OrderByList schema

3D VisualizationDigital TwinIndustrial IoTIoT
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-order-by-list-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-order-by-list-schema.json",
  "title": "OrderByList",
  "description": "OrderByList schema",
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "propertyName"
    ],
    "properties": {
      "order": {
        "allOf": [
          {
            "$ref": "#/components/schemas/Order"
          },
          {
            "description": "The set order that filters results."
          }
        ]
      },
      "propertyName": {
        "allOf": [
          {
            "$ref": "#/components/schemas/String"
          },
          {
            "description": "The property name."
          }
        ]
      }
    },
    "description": "Filter criteria that orders the return output. It can be sorted in ascending or descending order."
  }
}