Skip to main content
FuseFuse
IntegrationsJiraActions

Get Jira issue create metadata

Retrieve create-issue metadata for a project and optional issue type.

Agent markdown

issues.create_metadata · Jira · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • read:jira-work
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
project_id_or_keystringYesminLength 1; maxLength 64
issue_type_idstringNominLength 1; maxLength 64
issue_type_namestringNomaxLength 255

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
projectsarray<object>YesmaxItems 8
projects[]objectYesadditionalProperties false
projects[].idstringYesminLength 1; maxLength 64
projects[].keystringYesminLength 1; maxLength 64
projects[].namestringNomaxLength 255
projects[].issuetypesarray<object>NomaxItems 50
projects[].issuetypes[]objectYesadditionalProperties false
projects[].issuetypes[].idstringYesminLength 1; maxLength 64
projects[].issuetypes[].namestringYesmaxLength 255
projects[].issuetypes[].fieldsarray<object>NomaxItems 100
projects[].issuetypes[].fields[]objectYesadditionalProperties false
projects[].issuetypes[].fields[].keystringYesminLength 1; maxLength 64
projects[].issuetypes[].fields[].namestringYesmaxLength 255
projects[].issuetypes[].fields[].requiredbooleanYes
projects[].issuetypes[].fields[].schema_typestringNomaxLength 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"
  ]
}