Atlassian · Schema

Export Options

Options for issue export.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
type string
project_key string
project_name string
send_email boolean
include_attachments boolean
View JSON Schema on GitHub

JSON Schema

atlassian-export-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/export_options",
  "title": "Export Options",
  "type": "object",
  "description": "Options for issue export.",
  "properties": {
    "type": {
      "type": "string",
      "example": "example_value"
    },
    "project_key": {
      "type": "string",
      "example": "example_value"
    },
    "project_name": {
      "type": "string",
      "example": "example_value"
    },
    "send_email": {
      "type": "boolean",
      "example": "[email protected]"
    },
    "include_attachments": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": true
}