Atlassian · Schema

IssueList

A list of issue IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueIds array The list of issue IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-issuelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueList",
  "title": "IssueList",
  "additionalProperties": false,
  "description": "A list of issue IDs.",
  "properties": {
    "issueIds": {
      "description": "The list of issue IDs.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "issueIds"
  ],
  "type": "object"
}