An element of the order-by JQL clause.
{ "$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" }