Atlassian · Schema

PageOfCreateMetaIssueTypeWithField

A page of CreateMetaIssueType with Field.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
fields array The collection of FieldCreateMetaBeans.
maxResults integer The maximum number of items to return per page.
results array
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-pageofcreatemetaissuetypewithfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageOfCreateMetaIssueTypeWithField",
  "title": "PageOfCreateMetaIssueTypeWithField",
  "additionalProperties": true,
  "description": "A page of CreateMetaIssueType with Field.",
  "properties": {
    "fields": {
      "description": "The collection of FieldCreateMetaBeans.",
      "items": {
        "$ref": "#/components/schemas/FieldCreateMetadata"
      },
      "readOnly": true,
      "type": "array"
    },
    "maxResults": {
      "description": "The maximum number of items to return per page.",
      "format": "int32",
      "readOnly": true,
      "type": "integer"
    },
    "results": {
      "items": {
        "$ref": "#/components/schemas/FieldCreateMetadata"
      },
      "type": "array"
    },
    "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"
}