OrderBy

Filter criteria that orders the return output. It can be sorted in ascending or descending order.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
order object
propertyName object
View JSON Schema on GitHub

JSON Schema

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