Atlassian · Schema

IdSearchResults

Result of your JQL search. Returns a list of issue IDs and a token to fetch the next page if one exists.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueIds array The list of issue IDs found by the search.
nextPageToken string Continuation token to fetch the next page. If this result represents the last or the only page this token will be null.
View JSON Schema on GitHub

JSON Schema

atlassian-idsearchresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdSearchResults",
  "title": "IdSearchResults",
  "additionalProperties": false,
  "description": "Result of your JQL search. Returns a list of issue IDs and a token to fetch the next page if one exists.",
  "properties": {
    "issueIds": {
      "description": "The list of issue IDs found by the search.",
      "items": {
        "format": "int64",
        "readOnly": true,
        "type": "integer"
      },
      "readOnly": true,
      "type": "array"
    },
    "nextPageToken": {
      "description": "Continuation token to fetch the next page. If this result represents the last or the only page this token will be null.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}