Atlassian · Schema

IssuesJqlMetaDataBean

The description of the page of issues loaded by the provided JQL query.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
count integer The number of issues that were loaded in this evaluation.
maxResults integer The maximum number of issues that could be loaded in this evaluation.
startAt integer The index of the first issue.
totalCount integer The total number of issues the JQL returned.
validationWarnings array Any warnings related to the JQL query. Present only if the validation mode was set to `warn`.
View JSON Schema on GitHub

JSON Schema

atlassian-issuesjqlmetadatabean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssuesJqlMetaDataBean",
  "title": "IssuesJqlMetaDataBean",
  "additionalProperties": false,
  "description": "The description of the page of issues loaded by the provided JQL query.",
  "properties": {
    "count": {
      "description": "The number of issues that were loaded in this evaluation.",
      "format": "int32",
      "type": "integer"
    },
    "maxResults": {
      "description": "The maximum number of issues that could be loaded in this evaluation.",
      "format": "int32",
      "type": "integer"
    },
    "startAt": {
      "description": "The index of the first issue.",
      "format": "int64",
      "type": "integer"
    },
    "totalCount": {
      "description": "The total number of issues the JQL returned.",
      "format": "int64",
      "type": "integer"
    },
    "validationWarnings": {
      "description": "Any warnings related to the JQL query. Present only if the validation mode was set to `warn`.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "count",
    "maxResults",
    "startAt",
    "totalCount"
  ],
  "type": "object"
}