Atlassian · Schema

IssueMatches

A list of matched issues or errors for each JQL query, in the order the JQL queries were passed.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
matches array
View JSON Schema on GitHub

JSON Schema

atlassian-issuematches-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueMatches",
  "title": "IssueMatches",
  "additionalProperties": false,
  "description": "A list of matched issues or errors for each JQL query, in the order the JQL queries were passed.",
  "properties": {
    "matches": {
      "items": {
        "$ref": "#/components/schemas/IssueMatchesForJQL"
      },
      "type": "array"
    }
  },
  "required": [
    "matches"
  ],
  "type": "object"
}