Properties
| Name | Type | Description |
|---|---|---|
| jql | string | A [JQL](https://confluence.atlassian.com/x/egORLQ) expression. Order by clauses are not allowed. |
| maxResults | integer | The maximum number of items to return per page. |
| nextPageToken | string | The continuation token to fetch the next page. This token is provided by the response of this endpoint. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IdSearchRequestBean",
"title": "IdSearchRequestBean",
"additionalProperties": false,
"properties": {
"jql": {
"description": "A [JQL](https://confluence.atlassian.com/x/egORLQ) expression. Order by clauses are not allowed.",
"type": "string"
},
"maxResults": {
"default": 1000,
"description": "The maximum number of items to return per page.",
"format": "int32",
"type": "integer"
},
"nextPageToken": {
"description": "The continuation token to fetch the next page. This token is provided by the response of this endpoint.",
"type": "string"
}
},
"type": "object"
}