Atlassian · Schema

PageOfCreateMetaIssueTypes

A page of CreateMetaIssueTypes.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
createMetaIssueType array
issueTypes array The list of CreateMetaIssueType.
maxResults integer The maximum number of items to return per page.
startAt integer The index of the first item returned.
total integer The total number of items in all pages.
View JSON Schema on GitHub

JSON Schema

atlassian-pageofcreatemetaissuetypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageOfCreateMetaIssueTypes",
  "title": "PageOfCreateMetaIssueTypes",
  "additionalProperties": true,
  "description": "A page of CreateMetaIssueTypes.",
  "properties": {
    "createMetaIssueType": {
      "items": {
        "$ref": "#/components/schemas/IssueTypeIssueCreateMetadata"
      },
      "type": "array",
      "writeOnly": true
    },
    "issueTypes": {
      "description": "The list of CreateMetaIssueType.",
      "items": {
        "$ref": "#/components/schemas/IssueTypeIssueCreateMetadata"
      },
      "readOnly": true,
      "type": "array"
    },
    "maxResults": {
      "description": "The maximum number of items to return per page.",
      "format": "int32",
      "readOnly": true,
      "type": "integer"
    },
    "startAt": {
      "description": "The index of the first item returned.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "total": {
      "description": "The total number of items in all pages.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    }
  },
  "type": "object"
}