Atlassian · Schema

IssueCreateMetadata

The wrapper for the issue creation metadata for a list of projects.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
expand string Expand options that include additional project details in the response.
projects array List of projects and their issue creation metadata.
View JSON Schema on GitHub

JSON Schema

atlassian-issuecreatemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueCreateMetadata",
  "title": "IssueCreateMetadata",
  "additionalProperties": false,
  "description": "The wrapper for the issue creation metadata for a list of projects.",
  "properties": {
    "expand": {
      "description": "Expand options that include additional project details in the response.",
      "readOnly": true,
      "type": "string",
      "xml": {
        "attribute": true
      }
    },
    "projects": {
      "description": "List of projects and their issue creation metadata.",
      "items": {
        "$ref": "#/components/schemas/ProjectIssueCreateMetadata"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}