Atlassian · Schema

JexpIssues

The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
jql object The JQL query that specifies the set of issues available in the Jira expression.
View JSON Schema on GitHub

JSON Schema

atlassian-jexpissues-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JexpIssues",
  "title": "JexpIssues",
  "additionalProperties": false,
  "description": "The JQL specifying the issues available in the evaluated Jira expression under the `issues` context variable.",
  "properties": {
    "jql": {
      "allOf": [
        {
          "$ref": "#/components/schemas/JexpJqlIssues"
        }
      ],
      "description": "The JQL query that specifies the set of issues available in the Jira expression."
    }
  },
  "type": "object"
}