Atlassian · Schema

JqlQuery

A parsed JQL query.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
orderBy object
where object
View JSON Schema on GitHub

JSON Schema

atlassian-jqlquery-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JqlQuery",
  "title": "JqlQuery",
  "additionalProperties": false,
  "description": "A parsed JQL query.",
  "properties": {
    "orderBy": {
      "$ref": "#/components/schemas/JqlQueryOrderByClause"
    },
    "where": {
      "$ref": "#/components/schemas/JqlQueryClause"
    }
  },
  "type": "object"
}