Atlassian · Schema

JqlQueryOrderByClauseElement

An element of the order-by JQL clause.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
direction string The direction in which to order the results.
field object
View JSON Schema on GitHub

JSON Schema

atlassian-jqlqueryorderbyclauseelement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlQueryOrderByClauseElement",
  "title": "JqlQueryOrderByClauseElement",
  "additionalProperties": false,
  "description": "An element of the order-by JQL clause.",
  "properties": {
    "direction": {
      "description": "The direction in which to order the results.",
      "enum": [
        "asc",
        "desc"
      ],
      "type": "string"
    },
    "field": {
      "$ref": "#/components/schemas/JqlQueryField"
    }
  },
  "required": [
    "field"
  ],
  "type": "object"
}