Jira · Schema

CreatedIssue

Details of a newly created issue.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
id string The ID of the created issue.
key string The key of the created issue (e.g., PROJ-123).
self string The URL of the created issue in the REST API.
transition object Status of the transition applied during creation.
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-created-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CreatedIssue",
  "type": "object",
  "description": "Details of a newly created issue.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the created issue."
    },
    "key": {
      "type": "string",
      "description": "The key of the created issue (e.g., PROJ-123)."
    },
    "self": {
      "type": "string",
      "description": "The URL of the created issue in the REST API."
    },
    "transition": {
      "type": "object",
      "description": "Status of the transition applied during creation."
    }
  }
}