{ "$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" }