Atlassian · Schema

IssueMatchesForJQL

A list of the issues matched to a JQL query or details of errors encountered during matching.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
errors array A list of errors.
matchedIssues array A list of issue IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-issuematchesforjql-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueMatchesForJQL",
  "title": "IssueMatchesForJQL",
  "additionalProperties": false,
  "description": "A list of the issues matched to a JQL query or details of errors encountered during matching.",
  "properties": {
    "errors": {
      "description": "A list of errors.",
      "items": {
        "description": "A list of errors.",
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "matchedIssues": {
      "description": "A list of issue IDs.",
      "items": {
        "description": "A list of issue IDs.",
        "format": "int64",
        "type": "integer"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "errors",
    "matchedIssues"
  ],
  "type": "object"
}