UiPath · JSON Structure

Data Service Order By Clause Structure

Sort specification for query results

Type: object Properties: 2 Required: 1
AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTesting

OrderByClause is a JSON Structure definition published by UiPath, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

fieldName descending

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/uipath/refs/heads/main/json-structure/data-service-order-by-clause-structure.json",
  "name": "OrderByClause",
  "description": "Sort specification for query results",
  "type": "object",
  "required": [
    "fieldName"
  ],
  "properties": {
    "fieldName": {
      "type": "string",
      "description": "Name of the field to sort by",
      "example": "Example Name"
    },
    "descending": {
      "type": "boolean",
      "default": false,
      "description": "Whether to sort in descending order",
      "example": true
    }
  }
}