IntegrationsJiraActions
Create Jira issue
Create a Jira issue with bounded fields and Atlassian Document Format description.
issues.create · Jira · v1
Details
Scopes
write:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
project_id_or_key | string | Yes | minLength 1; maxLength 64 |
issue_type_id_or_name | string | Yes | minLength 1; maxLength 64 |
summary | string | Yes | minLength 1; maxLength 255 |
description | object | No | additionalProperties false |
description.type | string | Yes | enum doc |
description.version | integer | Yes | minimum 1; maximum 1 |
description.content | array<object> | Yes | minItems 1; maxItems 32 |
description.content[] | object | Yes | additionalProperties false |
description.content[].type | string | Yes | enum paragraph | heading | bulletList | orderedList |
description.content[].attrs | object | No | additionalProperties false |
description.content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content | array<object> | No | maxItems 64 |
description.content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].type | string | Yes | enum text | hardBreak | listItem | paragraph | heading |
description.content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
description.content[].content[].attrs | object | No | additionalProperties false |
description.content[].content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content[].content | array<object> | No | maxItems 64 |
description.content[].content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].content[].type | string | Yes | enum text | hardBreak | paragraph | heading |
description.content[].content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
description.content[].content[].content[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content[].content[].content | array<object> | No | maxItems 64 |
description.content[].content[].content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].content[].content[].type | string | Yes | enum text | hardBreak |
description.content[].content[].content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
assignee_account_id | string | No | minLength 1; maxLength 128 |
priority_id_or_name | string | No | minLength 1; maxLength 64 |
labels | array<string> | No | maxItems 50 |
labels[] | string | Yes | minLength 1; maxLength 255 |
parent_key | string | No | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
key | string | Yes | minLength 1; maxLength 64 |
self | string | No | maxLength 2048 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"project_id_or_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"issue_type_id_or_name": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"summary": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"description": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"doc"
]
},
"version": {
"type": "integer",
"minimum": 1,
"maximum": 1
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"paragraph",
"heading",
"bulletList",
"orderedList"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak",
"listItem",
"paragraph",
"heading"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak",
"paragraph",
"heading"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"minItems": 1,
"maxItems": 32
}
},
"required": [
"type",
"version",
"content"
]
},
"assignee_account_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"priority_id_or_name": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"labels": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 255
},
"maxItems": 50
},
"parent_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"project_id_or_key",
"issue_type_id_or_name",
"summary"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"self": {
"type": "string",
"maxLength": 2048
}
},
"required": [
"id",
"key"
]
}