Atlassian · Schema

CreatedIssue

Details about a created issue or subtask.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the created issue or subtask.
key string The key of the created issue or subtask.
self string The URL of the created issue or subtask.
transition object The response code and messages related to any requested transition.
watchers object The response code and messages related to any requested watchers.
View JSON Schema on GitHub

JSON Schema

atlassian-createdissue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreatedIssue",
  "title": "CreatedIssue",
  "additionalProperties": false,
  "description": "Details about a created issue or subtask.",
  "properties": {
    "id": {
      "description": "The ID of the created issue or subtask.",
      "readOnly": true,
      "type": "string"
    },
    "key": {
      "description": "The key of the created issue or subtask.",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the created issue or subtask.",
      "readOnly": true,
      "type": "string"
    },
    "transition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NestedResponse"
        }
      ],
      "description": "The response code and messages related to any requested transition.",
      "readOnly": true
    },
    "watchers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NestedResponse"
        }
      ],
      "description": "The response code and messages related to any requested watchers.",
      "readOnly": true
    }
  },
  "type": "object"
}