IntegrationsJiraActions
Get Jira issue create metadata
Retrieve create-issue metadata for a project and optional issue type.
issues.create_metadata · Jira · v1
Details
Scopes
read: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 | string | No | minLength 1; maxLength 64 |
issue_type_name | string | No | maxLength 255 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
projects | array<object> | Yes | maxItems 8 |
projects[] | object | Yes | additionalProperties false |
projects[].id | string | Yes | minLength 1; maxLength 64 |
projects[].key | string | Yes | minLength 1; maxLength 64 |
projects[].name | string | No | maxLength 255 |
projects[].issuetypes | array<object> | No | maxItems 50 |
projects[].issuetypes[] | object | Yes | additionalProperties false |
projects[].issuetypes[].id | string | Yes | minLength 1; maxLength 64 |
projects[].issuetypes[].name | string | Yes | maxLength 255 |
projects[].issuetypes[].fields | array<object> | No | maxItems 100 |
projects[].issuetypes[].fields[] | object | Yes | additionalProperties false |
projects[].issuetypes[].fields[].key | string | Yes | minLength 1; maxLength 64 |
projects[].issuetypes[].fields[].name | string | Yes | maxLength 255 |
projects[].issuetypes[].fields[].required | boolean | Yes | — |
projects[].issuetypes[].fields[].schema_type | string | No | maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"project_id_or_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"issue_type_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"issue_type_name": {
"type": "string",
"maxLength": 255
}
},
"required": [
"project_id_or_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"projects": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
},
"issuetypes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
},
"fields": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
},
"required": {
"type": "boolean"
},
"schema_type": {
"type": "string",
"maxLength": 64
}
},
"required": [
"key",
"name",
"required"
]
},
"maxItems": 100
}
},
"required": [
"id",
"name"
]
},
"maxItems": 50
}
},
"required": [
"id",
"key"
]
},
"maxItems": 8
}
},
"required": [
"projects"
]
}