Atlassian · Schema

JqlQueryOrderByClause

Details of the order-by JQL clause.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
fields array The list of order-by clause fields and their ordering directives.
View JSON Schema on GitHub

JSON Schema

atlassian-jqlqueryorderbyclause-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlQueryOrderByClause",
  "title": "JqlQueryOrderByClause",
  "additionalProperties": false,
  "description": "Details of the order-by JQL clause.",
  "properties": {
    "fields": {
      "description": "The list of order-by clause fields and their ordering directives.",
      "items": {
        "$ref": "#/components/schemas/JqlQueryOrderByClauseElement"
      },
      "type": "array"
    }
  },
  "required": [
    "fields"
  ],
  "type": "object"
}