- Created by 红旗公 on 2020-01-05
作用
使用配置导出器(Config exporter)内置脚本将扩展配置信息导出到描述符(YAML)文件。YAML文件包含配置内置扩展点所需的信息,如侦听器、挂钩、宏和UI片段等。
当从一个实例迁移到另一个实例时,在脚本插件中使用此文件可以自动配置脚本,从而节省时间并确保实例之间的一致性。
操作

只需要在输入框中写一个完整的目录,点击"RUN"即可。
导出大致有以下内容
workflows文件夹,里面包括系统中设定所有工作流的定义描述,其中就是jiradraftworkflows表中的DESCRIPTOR字段信息
另外一个是CurrentConfig.groovy文件,包括系统中所有各项配置的内容信息,并引入导入脚本,内容如下
Expand source
package com.onresolve.jira.upgrades
import com.atlassian.jira.component.ComponentAccessor
import com.onresolve.jira.groovy.metadata.JiraMetadataDSL
import groovy.transform.BaseScript
import com.onresolve.jira.groovy.metadata.workflows.WorkflowsMigrator
import com.atlassian.jira.issue.operation.IssueOperations
@BaseScript JiraMetadataDSL dsl
def i18nHelper = ComponentAccessor.getJiraAuthenticationContext().getI18nHelper()
ComponentAccessor.getJiraAuthenticationContext().setLoggedInUser(ComponentAccessor.getUserUtil().getUserByKey("admin"))
issuetypes([
[
"name": "Epic",
"style": null,
"description": "Created by Jira Software - do not edit or delete. Issue type for a big user story that needs to be broken down.",
"iconurl": "/images/icons/issuetypes/epic.svg"
],
[
"name": "Story",
"style": null,
"description": "Created by Jira Software - do not edit or delete. Issue type for a user story.",
"iconurl": "/images/icons/issuetypes/story.svg"
],
[
"name": "\u9700\u6c42",
"style": null,
"description": "",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10300&avatarType=issuetype"
],
[
"name": "\u8bf7\u6c42\u5de5\u5355",
"style": null,
"description": "",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10300&avatarType=issuetype"
],
[
"name": "\u53d1\u5e03\u7533\u8bf7",
"style": null,
"description": "",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10300&avatarType=issuetype"
],
[
"name": "\u96c6\u6210\u7533\u8bf7",
"style": null,
"description": "",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10300&avatarType=issuetype"
],
[
"name": "Task",
"style": null,
"description": "A task that needs to be done.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10318&avatarType=issuetype"
],
[
"name": "Bug",
"style": null,
"description": "A problem which impairs or prevents the functions of the product.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10303&avatarType=issuetype"
],
[
"name": "Incident",
"style": null,
"description": "For system outages or incidents. Created by Jira Service Desk.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10640&avatarType=issuetype"
],
[
"name": "Service Request",
"style": null,
"description": "Created by Jira Service Desk.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10641&avatarType=issuetype"
],
[
"name": "Service Request with Approvals",
"style": null,
"description": "For requests that require approval. Created by Jira Service Desk",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10642&avatarType=issuetype"
],
[
"name": "Change",
"style": null,
"description": "Created by Jira Service Desk.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10643&avatarType=issuetype"
],
[
"name": "Problem",
"style": null,
"description": "Track underlying causes of incidents. Created by Jira Service Desk.",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10644&avatarType=issuetype"
],
[
"name": "Sub-task",
"style": "jira-subtask",
"description": "The sub-task of the issue",
"iconurl": "/secure/viewavatar?size=xsmall&avatarId=10316&avatarType=issuetype"
]
]
)
issuetypeschemes ([
[
"name": "Default Issue Type Scheme",
"description": "Default issue type scheme is the list of global issue types. All newly created issue types will automatically be added to this scheme.",
"default": null,
"issuetypes": [
"Epic",
"Story",
"\u9700\u6c42",
"\u8bf7\u6c42\u5de5\u5355",
"\u53d1\u5e03\u7533\u8bf7",
"\u96c6\u6210\u7533\u8bf7"
]
],
[
"name": "DEMO: Scrum Issue Type Scheme",
"description": null,
"default": "Story",
"issuetypes": [
"Task",
"Sub-task",
"Story",
"Bug",
"Epic"
]
],
[
"name": "ITSM-\u95ee\u9898\u7c7b\u578b\u65b9\u6848",
"description": null,
"default": "\u8bf7\u6c42\u5de5\u5355",
"issuetypes": [
"\u8bf7\u6c42\u5de5\u5355",
"\u96c6\u6210\u7533\u8bf7",
"\u53d1\u5e03\u7533\u8bf7"
]
],
[
"name": "PROJ1: Scrum Issue Type Scheme",
"description": null,
"default": "Story",
"issuetypes": [
"Task",
"Sub-task",
"Story",
"Bug",
"Epic"
]
],
[
"name": "REQ-\u95ee\u9898\u7c7b\u578b\u65b9\u6848",
"description": null,
"default": "Epic",
"issuetypes": [
"Epic",
"\u9700\u6c42"
]
],
[
"name": "SD: Jira Service Desk Issue Type Scheme",
"description": "This Jira Service Desk Issue Type Scheme was generated automatically",
"default": null,
"issuetypes": [
"Task",
"Service Request",
"Sub-task",
"Incident",
"Problem",
"Change",
"Service Request with Approvals"
]
],
[
"name": "TEAM1-\u95ee\u9898\u7c7b\u578b\u754c\u9762 ",
"description": null,
"default": "Story",
"issuetypes": [
"Story",
"Sub-task",
"Task",
"Bug"
]
]
]
)
screens ([
[
"name": "DEMO: Scrum Bug Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"environment",
"attachment",
"versions",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100",
"customfield_10327",
"customfield_10329",
"customfield_10330"
]
]
]
],
[
"name": "DEMO: Scrum Default Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100",
"customfield_10327",
"customfield_10329",
"customfield_10330"
]
]
]
],
[
"name": "Default Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"security",
"priority",
"duedate",
"components",
"versions",
"fixVersions",
"assignee",
"reporter",
"environment",
"description",
"timetracking",
"attachment",
"labels",
"customfield_10327",
"customfield_10329",
"customfield_10330"
]
]
]
],
[
"name": "ITMS-\u4e0a\u7ebf\u7533\u8bf7-\u754c\u9762",
"tabs": [
[
"name": "\u57df\u9009\u9879",
"fields": [
"summary",
"description",
"assignee",
"issuelinks",
"attachment"
]
]
]
],
[
"name": "ITMS-\u8bf7\u6c42\u5de5\u5355-\u754c\u9762",
"tabs": [
[
"name": "\u57df\u9009\u9879",
"fields": [
"summary",
"description",
"assignee",
"issuelinks",
"attachment"
]
]
]
],
[
"name": "ITMS-\u96c6\u6210\u7533\u8bf7-\u754c\u9762",
"tabs": [
[
"name": "\u57df\u9009\u9879",
"fields": [
"summary",
"description",
"assignee",
"issuelinks",
"attachment"
]
]
]
],
[
"name": "ITSM: Kanban Bug Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"environment",
"attachment",
"versions",
"issuelinks",
"assignee",
"customfield_10101"
]
]
]
],
[
"name": "ITSM: Kanban Default Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Pending Reason screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"issuelinks",
"customfield_10306"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "JIRA Service Desk Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"issuelinks"
]
]
]
],
[
"name": "PROJ1: Scrum Bug Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"environment",
"attachment",
"versions",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100"
]
]
]
],
[
"name": "PROJ1: Scrum Default Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100"
]
]
]
],
[
"name": "REQ-EPIC\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"description",
"customfield_10200",
"duedate",
"reporter",
"assignee",
"components",
"fixVersions",
"priority",
"issuelinks",
"security",
"attachment"
]
]
]
],
[
"name": "REQ-\u9700\u6c42\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"assignee",
"description",
"reporter",
"duedate",
"components",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks"
]
]
]
],
[
"name": "REQ: Kanban Bug Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"environment",
"attachment",
"versions",
"issuelinks",
"assignee",
"customfield_10101"
]
]
]
],
[
"name": "REQ: Kanban Default Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101"
]
]
]
],
[
"name": "Resolve Issue Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"resolution",
"fixVersions",
"assignee",
"worklog"
]
]
]
],
[
"name": "SD: Jira Service Desk Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"duedate",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303"
]
]
]
],
[
"name": "SD: Jira Service Desk: Change Create Issue Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10309",
"customfield_10312",
"customfield_10313",
"customfield_10308",
"customfield_10314",
"customfield_10310",
"customfield_10311",
"customfield_10321",
"customfield_10322"
]
]
]
],
[
"name": "SD: Jira Service Desk: Change View/Edit Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10309",
"customfield_10311",
"customfield_10310",
"customfield_10312",
"customfield_10313",
"customfield_10322",
"customfield_10306"
]
]
]
],
[
"name": "SD: Jira Service Desk: Incident Create Issue Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10315",
"customfield_10316",
"customfield_10317"
]
]
]
],
[
"name": "SD: Jira Service Desk: Incident View/Edit Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10315",
"customfield_10316",
"customfield_10306",
"customfield_10317"
]
]
]
],
[
"name": "SD: Jira Service Desk: Problem Create Issue Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10317",
"customfield_10318",
"customfield_10315",
"customfield_10316",
"customfield_10306",
"customfield_10319",
"customfield_10320"
]
]
]
],
[
"name": "SD: Jira Service Desk: Problem View/Edit Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10317",
"customfield_10318",
"customfield_10315",
"customfield_10316",
"customfield_10306",
"customfield_10319",
"customfield_10320"
]
]
]
],
[
"name": "SD: Jira Service Desk: Request Fulfilment Create Issue Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303"
]
]
]
],
[
"name": "SD: Jira Service Desk: Request Fulfilment View/Edit Screen",
"tabs": [
[
"name": "Default",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"attachment",
"description",
"issuelinks",
"assignee",
"priority",
"labels",
"customfield_10301",
"customfield_10307",
"customfield_10303",
"customfield_10308",
"customfield_10314",
"customfield_10306",
"customfield_10315",
"customfield_10316"
]
]
]
],
[
"name": "TEAM1-BUG-\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"environment",
"attachment",
"versions",
"issuelinks",
"assignee",
"customfield_10100"
]
]
]
],
[
"name": "TEAM1-Story-\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100"
]
]
]
],
[
"name": "TEAM1-\u4efb\u52a1-\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee",
"customfield_10101",
"customfield_10100"
]
]
]
],
[
"name": "TEAM1-\u5b50\u4efb\u52a1-\u754c\u9762",
"tabs": [
[
"name": "Field Tab",
"fields": [
"customfield_10103",
"summary",
"issuetype",
"reporter",
"components",
"description",
"fixVersions",
"priority",
"labels",
"security",
"attachment",
"issuelinks",
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
],
[
"name": "Workflow Screen",
"tabs": [
[
"name": "Field Tab",
"fields": [
"assignee"
]
]
]
]
]
)
customfields ([
[
"name": "Approvals",
"description": "Provides search options for Jira Service Desk approvals information. This custom field is created programmatically and required by Service Desk.",
"type": "com.atlassian.servicedesk.approvals-plugin:sd-approvals",
"searcher": "com.atlassian.servicedesk.approvals-plugin:sd-approvals-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Approvals",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Approvers",
"description": "Contains users needed for approval. This custom field was created by Jira Service Desk.",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker",
"searcher": null,
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Approvers",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "CAB",
"description": "Change Advisory Board members",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:userpickergroupsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for CAB",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change completion date",
"description": "Specify the completion time for the change request",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:datetime",
"searcher": null,
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change completion date",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change managers",
"description": "Contains the change managers for the change management process.",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:multiuserpicker",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:userpickergroupsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change managers",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change reason",
"description": "Choose the reason for the change request",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change reason",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change risk",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change risk",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change start date",
"description": "Specify the time and date for the start of the change",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:datetime",
"searcher": null,
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change start date",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Change type",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Change type",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Customer Request Type",
"description": "Holds information about which Service Desk was used to create a ticket. This custom field is created programmatically and must not be modified.",
"type": "com.atlassian.servicedesk:vp-origin",
"searcher": "com.atlassian.servicedesk:vp-origin-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Customer Request Type",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Development",
"description": "Development Summary Field for Jira Software use only.",
"type": "com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary",
"searcher": "com.atlassian.jira.plugins.jira-development-integration-plugin:devsummarysearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Development",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Epic Color",
"description": "Epic Colour field for Jira Software use only.",
"type": "com.pyxis.greenhopper.jira:gh-epic-color",
"searcher": "com.pyxis.greenhopper.jira:gh-epic-color-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Epic Color",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
"Epic"
]
]
]
]
],
[
"name": "Epic Link",
"description": "Choose an epic to assign this issue to.",
"type": "com.pyxis.greenhopper.jira:gh-epic-link",
"searcher": "com.pyxis.greenhopper.jira:gh-epic-link-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Epic Link",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Epic Name",
"description": "Provide a short name to identify this epic.",
"type": "com.pyxis.greenhopper.jira:gh-epic-label",
"searcher": "com.pyxis.greenhopper.jira:gh-epic-label-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Epic Name",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
"Epic"
]
]
]
]
],
[
"name": "Epic Status",
"description": "Epic Status field for Jira Software use only.",
"type": "com.pyxis.greenhopper.jira:gh-epic-status",
"searcher": "com.pyxis.greenhopper.jira:gh-epic-status-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Epic Status",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
"Epic"
]
]
]
]
],
[
"name": "Impact",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Impact",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Investigation reason",
"description": "Reason for problem investigation",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Investigation reason",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Operational categorization",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselect",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Operational categorization",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Organizations",
"description": "Stores the organizations that are associated with a Service Desk customer portal requests. This custom field is created programmatically and required by Service Desk.",
"type": "com.atlassian.servicedesk:sd-customer-organizations",
"searcher": "com.atlassian.servicedesk:sd-customer-organizations-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Organizations",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Pending reason",
"description": "Specify the reason for moving the issue to the Pending status",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Pending reason",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Product categorization",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselect",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:cascadingselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Product categorization",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Rank",
"description": "Global rank field for Jira Software use only.",
"type": "com.pyxis.greenhopper.jira:gh-lexo-rank",
"searcher": "com.pyxis.greenhopper.jira:gh-lexo-rank-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Rank",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Request participants",
"description": "Stores the users that are participants in Service Desk customer portal requests. This custom field is created programmatically and required by Service Desk.",
"type": "com.atlassian.servicedesk:sd-request-participants",
"searcher": "com.atlassian.servicedesk:sd-request-participants-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Request participants",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Root cause",
"description": "Describe the root cause for the problem",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:textarea",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:textsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Root cause",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Satisfaction",
"description": "Stores request feedback in Service Desk requests. This custom field is created programmatically and required by Service Desk.",
"type": "com.atlassian.servicedesk:sd-request-feedback",
"searcher": "com.atlassian.servicedesk:sd-request-feedback-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Satisfaction",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Satisfaction date",
"description": "Stores request feedback date in Service Desk requests. This custom field is created programmatically and required by Service Desk.",
"type": "com.atlassian.servicedesk:sd-request-feedback-date",
"searcher": "com.atlassian.servicedesk:sd-request-feedback-date-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Satisfaction date",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Source",
"description": "Captures the reporting source for this issue",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Source",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Sprint",
"description": "Jira Software sprint field",
"type": "com.pyxis.greenhopper.jira:gh-sprint",
"searcher": "com.pyxis.greenhopper.jira:gh-sprint-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Sprint",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Story Points",
"description": "Measurement of complexity and/or size of a requirement.",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:float",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:exactnumber",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Story Points",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
"Epic",
"Story"
]
]
]
]
],
[
"name": "Time to approve normal change",
"description": "This custom field was created by Jira Service Desk.",
"type": "com.atlassian.servicedesk:sd-sla-field",
"searcher": "com.atlassian.servicedesk:sd-sla-field-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Time to approve normal change",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Time to close after resolution",
"description": "This custom field was created by Jira Service Desk.",
"type": "com.atlassian.servicedesk:sd-sla-field",
"searcher": "com.atlassian.servicedesk:sd-sla-field-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Time to close after resolution",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Time to first response",
"description": "This custom field was created by Jira Service Desk.",
"type": "com.atlassian.servicedesk:sd-sla-field",
"searcher": "com.atlassian.servicedesk:sd-sla-field-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Time to first response",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Time to resolution",
"description": "This custom field was created by Jira Service Desk.",
"type": "com.atlassian.servicedesk:sd-sla-field",
"searcher": "com.atlassian.servicedesk:sd-sla-field-searcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Time to resolution",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Urgency",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Urgency",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "Workaround",
"description": "Describe the workaround for the problem",
"type": "com.atlassian.jira.plugin.system.customfieldtypes:textarea",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:textsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for Workaround",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "issueFunction",
"description": "Field created by script runner plugin for advanced issue functions. Do not place on any screen.",
"type": "com.onresolve.jira.groovy.groovyrunner:jqlFunctionsCustomFieldType",
"searcher": "com.onresolve.jira.groovy.groovyrunner:jqlFunctionsSearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for issueFunction",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "\u5b9e\u9645\u5b8c\u6210\u65e5\u671f",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:datepicker",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:daterange",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for \u5b9e\u9645\u5b8c\u6210\u65e5\u671f",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "\u5f00\u53d1\u4eba\u5458",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:userpicker",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:userpickergroupsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for \u5f00\u53d1\u4eba\u5458",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
],
[
"name": "DEMO\u9879\u76ee\u7528",
"description": "DEMO\u9879\u76ee\u7528",
"context": [
"projects": [
"DEMO"
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "\u6240\u5c5e\u56e2\u961f",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for \u6240\u5c5e\u56e2\u961f",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "\u7cfb\u7edf\u4e0e\u5e94\u7528",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:select",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:multiselectsearcher",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for \u7cfb\u7edf\u4e0e\u5e94\u7528",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
"TEAM1"
],
"issuetypes": [
null
]
]
],
[
"name": "\u56e2\u961f2\u7a7a\u95f4",
"description": "",
"context": [
"projects": [
"REQ"
],
"issuetypes": [
null
]
]
]
]
],
[
"name": "\u8ba1\u5212\u5b8c\u6210\u65e5\u671f",
"description": null,
"type": "com.atlassian.jira.plugin.system.customfieldtypes:datepicker",
"searcher": "com.atlassian.jira.plugin.system.customfieldtypes:daterange",
"fieldConfigs": [
[
"name": "Default Configuration Scheme for \u8ba1\u5212\u5b8c\u6210\u65e5\u671f",
"description": "Default configuration scheme generated by Jira",
"context": [
"projects": [
],
"issuetypes": [
null
]
]
]
]
]
]
)
screenschemes ([
[
"name": "DEMO: Scrum Bug Screen Scheme",
"description": "",
"operations": [
"__null__": "DEMO: Scrum Bug Screen"
]
],
[
"name": "DEMO: Scrum Default Screen Scheme",
"description": "",
"operations": [
"__null__": "DEMO: Scrum Default Issue Screen"
]
],
[
"name": "Default Screen Scheme",
"description": "Default Screen Scheme",
"operations": [
"__null__": "Default Screen"
]
],
[
"name": "ITSM-\u53d1\u5e03\u7533\u8bf7-\u65b9\u6848",
"description": "",
"operations": [
"__null__": "ITMS-\u4e0a\u7ebf\u7533\u8bf7-\u754c\u9762"
]
],
[
"name": "ITSM-\u7533\u8bf7\u5de5\u5355-\u65b9\u6848",
"description": "",
"operations": [
"__null__": "ITMS-\u8bf7\u6c42\u5de5\u5355-\u754c\u9762"
]
],
[
"name": "ITSM-\u96c6\u6210\u7533\u8bf7-\u65b9\u6848",
"description": "",
"operations": [
"__null__": "ITMS-\u96c6\u6210\u7533\u8bf7-\u754c\u9762"
]
],
[
"name": "ITSM: Kanban Default Screen Scheme",
"description": "",
"operations": [
"__null__": "ITSM: Kanban Default Issue Screen"
]
],
[
"name": "PROJ1: Scrum Bug Screen Scheme",
"description": "",
"operations": [
"__null__": "PROJ1: Scrum Bug Screen"
]
],
[
"name": "PROJ1: Scrum Default Screen Scheme",
"description": "",
"operations": [
"__null__": "PROJ1: Scrum Default Issue Screen"
]
],
[
"name": "REQ-EPIC-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "REQ-EPIC\u754c\u9762"
]
],
[
"name": "REQ-\u4e0a\u7ebf\u7533\u8bf7-\u65b9\u6848",
"description": "",
"operations": [
"__null__": "ITMS-\u4e0a\u7ebf\u7533\u8bf7-\u754c\u9762"
]
],
[
"name": "REQ-\u9700\u6c42-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "REQ-\u9700\u6c42\u754c\u9762"
]
],
[
"name": "SD: Jira Service Desk Screen Scheme",
"description": "This Jira Service Desk Screen Scheme was generated automatically",
"operations": [
"__null__": "SD: Jira Service Desk Screen"
]
],
[
"name": "SD: Jira Service Desk: Change Management Screen Scheme",
"description": "",
"operations": [
"__null__": "SD: Jira Service Desk: Change Create Issue Screen",
"(IssueOperations.CREATE_ISSUE_OPERATION)": "SD: Jira Service Desk: Change Create Issue Screen",
"(IssueOperations.EDIT_ISSUE_OPERATION)": "SD: Jira Service Desk: Change View/Edit Screen",
"(IssueOperations.VIEW_ISSUE_OPERATION)": "SD: Jira Service Desk: Change View/Edit Screen"
]
],
[
"name": "SD: Jira Service Desk: Incident Management Screen Scheme",
"description": "",
"operations": [
"__null__": "SD: Jira Service Desk: Incident Create Issue Screen",
"(IssueOperations.CREATE_ISSUE_OPERATION)": "SD: Jira Service Desk: Incident Create Issue Screen",
"(IssueOperations.EDIT_ISSUE_OPERATION)": "SD: Jira Service Desk: Incident View/Edit Screen",
"(IssueOperations.VIEW_ISSUE_OPERATION)": "SD: Jira Service Desk: Incident View/Edit Screen"
]
],
[
"name": "SD: Jira Service Desk: Problem Management Screen Scheme",
"description": "",
"operations": [
"__null__": "SD: Jira Service Desk: Problem Create Issue Screen",
"(IssueOperations.CREATE_ISSUE_OPERATION)": "SD: Jira Service Desk: Problem Create Issue Screen",
"(IssueOperations.EDIT_ISSUE_OPERATION)": "SD: Jira Service Desk: Problem View/Edit Screen",
"(IssueOperations.VIEW_ISSUE_OPERATION)": "SD: Jira Service Desk: Problem View/Edit Screen"
]
],
[
"name": "SD: Jira Service Desk: Request Fulfilment Screen Scheme",
"description": "",
"operations": [
"__null__": "SD: Jira Service Desk: Request Fulfilment Create Issue Screen",
"(IssueOperations.CREATE_ISSUE_OPERATION)": "SD: Jira Service Desk: Request Fulfilment Create Issue Screen",
"(IssueOperations.EDIT_ISSUE_OPERATION)": "SD: Jira Service Desk: Request Fulfilment View/Edit Screen",
"(IssueOperations.VIEW_ISSUE_OPERATION)": "SD: Jira Service Desk: Request Fulfilment View/Edit Screen"
]
],
[
"name": "TEAM1-BUG-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "TEAM1-BUG-\u754c\u9762"
]
],
[
"name": "TEAM1-STORY-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "TEAM1-Story-\u754c\u9762"
]
],
[
"name": "TEAM1-SUBTASK-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "TEAM1-\u5b50\u4efb\u52a1-\u754c\u9762"
]
],
[
"name": "TEAM1-\u4efb\u52a1-\u754c\u9762\u65b9\u6848",
"description": "",
"operations": [
"__null__": "TEAM1-\u4efb\u52a1-\u754c\u9762"
]
]
]
)
issuetypescreenschemes ([
[
"name": "DEMO: Scrum Issue Type Screen Scheme",
"description": "",
"mapping": [
"__null__": "DEMO: Scrum Default Screen Scheme",
"Bug": "DEMO: Scrum Bug Screen Scheme"
]
],
[
"name": "Default Issue Type Screen Scheme",
"description": "The default issue type screen scheme",
"mapping": [
"__null__": "Default Screen Scheme"
]
],
[
"name": "ITSM-\u95ee\u9898\u7c7b\u578b\u754c\u9762\u65b9\u6848",
"description": "",
"mapping": [
"__null__": "ITSM-\u7533\u8bf7\u5de5\u5355-\u65b9\u6848",
"\u8bf7\u6c42\u5de5\u5355": "ITSM-\u7533\u8bf7\u5de5\u5355-\u65b9\u6848",
"\u96c6\u6210\u7533\u8bf7": "ITSM-\u96c6\u6210\u7533\u8bf7-\u65b9\u6848",
"\u53d1\u5e03\u7533\u8bf7": "ITSM-\u53d1\u5e03\u7533\u8bf7-\u65b9\u6848"
]
],
[
"name": "PROJ1: Scrum Issue Type Screen Scheme",
"description": "",
"mapping": [
"__null__": "PROJ1: Scrum Default Screen Scheme",
"Bug": "PROJ1: Scrum Bug Screen Scheme"
]
],
[
"name": "REQ-\u95ee\u9898\u7c7b\u578b\u754c\u9762\u65b9\u6848",
"description": "",
"mapping": [
"__null__": "REQ-\u9700\u6c42-\u754c\u9762\u65b9\u6848",
"Epic": "REQ-EPIC-\u754c\u9762\u65b9\u6848",
"\u9700\u6c42": "REQ-\u9700\u6c42-\u754c\u9762\u65b9\u6848"
]
],
[
"name": "SD: Jira Service Desk Issue Type Screen Scheme",
"description": "This Jira Service Desk Issue Type Screen Scheme was generated automatically",
"mapping": [
"__null__": "SD: Jira Service Desk Screen Scheme",
"Incident": "SD: Jira Service Desk: Incident Management Screen Scheme",
"Task": "SD: Jira Service Desk: Request Fulfilment Screen Scheme",
"Service Request with Approvals": "SD: Jira Service Desk: Request Fulfilment Screen Scheme",
"Service Request": "SD: Jira Service Desk: Request Fulfilment Screen Scheme",
"Sub-task": "SD: Jira Service Desk: Request Fulfilment Screen Scheme",
"Problem": "SD: Jira Service Desk: Problem Management Screen Scheme",
"Change": "SD: Jira Service Desk: Change Management Screen Scheme"
]
],
[
"name": "TEAM-\u95ee\u9898\u7c7b\u578b\u754c\u9762\u65b9\u6848",
"description": "",
"mapping": [
"__null__": "TEAM1-STORY-\u754c\u9762\u65b9\u6848",
"Task": "TEAM1-\u4efb\u52a1-\u754c\u9762\u65b9\u6848",
"Story": "TEAM1-STORY-\u754c\u9762\u65b9\u6848",
"Bug": "TEAM1-BUG-\u754c\u9762\u65b9\u6848",
"Sub-task": "TEAM1-SUBTASK-\u754c\u9762\u65b9\u6848"
]
]
]
)
statuses ([
[
"name": "Open",
"description": "The issue is open and ready for the assignee to start work on it.",
"iconurl": "/images/icons/statuses/open.png",
"statusCategory": "new"
],
[
"name": "In Progress",
"description": "This issue is being actively worked on at the moment by the assignee.",
"iconurl": "/images/icons/statuses/inprogress.png",
"statusCategory": "indeterminate"
],
[
"name": "Reopened",
"description": "This issue was once resolved, but the resolution was deemed incorrect. From here issues are either marked assigned or resolved.",
"iconurl": "/images/icons/statuses/reopened.png",
"statusCategory": "new"
],
[
"name": "Resolved",
"description": "A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.",
"iconurl": "/images/icons/statuses/resolved.png",
"statusCategory": "done"
],
[
"name": "Closed",
"description": "The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.",
"iconurl": "/images/icons/statuses/closed.png",
"statusCategory": "done"
],
[
"name": "To Do",
"description": "",
"iconurl": "/",
"statusCategory": "new"
],
[
"name": "Done",
"description": "",
"iconurl": "/",
"statusCategory": "done"
],
[
"name": "Backlog",
"description": "",
"iconurl": "/",
"statusCategory": "new"
],
[
"name": "Selected for Development",
"description": "",
"iconurl": "/",
"statusCategory": "new"
],
[
"name": "\u672a\u5f00\u59cb",
"description": "\u6b64\u72b6\u6001\u7531 Jira Software \u8fdb\u884c\u5185\u90e8\u7ba1\u7406",
"iconurl": "/",
"statusCategory": "new"
],
[
"name": "\u5ba1\u6279\u4e2d",
"description": null,
"iconurl": "/images/icons/statuses/generic.png",
"statusCategory": "indeterminate"
],
[
"name": "Declined",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/statuses/generic.png",
"statusCategory": "done"
],
[
"name": "Waiting for support",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "undefined"
],
[
"name": "Waiting for customer",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "undefined"
],
[
"name": "Pending",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Canceled",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "done"
],
[
"name": "Escalated",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Waiting for approval",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "new"
],
[
"name": "Awaiting CAB approval",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Planning",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Awaiting implementation",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Implementing",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Peer review / change manager approval",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "new"
],
[
"name": "Work in progress",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Completed",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "done"
],
[
"name": "Under investigation",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "indeterminate"
],
[
"name": "Under review",
"description": "This was auto-generated by Jira Service Desk during workflow import",
"iconurl": "/images/icons/status_generic.gif",
"statusCategory": "new"
]
]
)
def workflowsBase = "some/base/workflows"
workflows ([
[
"name": "jira",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/jira.xml\")"
],
[
"name": "classic default workflow",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/classic default workflow.xml\")"
],
[
"name": "ITMS-DEFAULT",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/ITMS-DEFAULT.xml\")"
],
[
"name": "REQ-REQ",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/REQ-REQ.xml\")"
],
[
"name": "SD: Change Management workflow for Jira Service Desk",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Change Management workflow for Jira Service Desk.xml\")"
],
[
"name": "SD: Incident Management workflow for Jira Service Desk",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Incident Management workflow for Jira Service Desk.xml\")"
],
[
"name": "SD: Jira Service Desk default workflow",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Jira Service Desk default workflow.xml\")"
],
[
"name": "SD: Problem Management workflow for Jira Service Desk",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Problem Management workflow for Jira Service Desk.xml\")"
],
[
"name": "SD: Service Request Fulfilment with Approvals workflow for Jira Service Desk",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Service Request Fulfilment with Approvals workflow for Jira Service Desk.xml\")"
],
[
"name": "SD: Service Request Fulfilment workflow for Jira Service Desk",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/SD: Service Request Fulfilment workflow for Jira Service Desk.xml\")"
],
[
"name": "Software Simplified Workflow for Project DEMO",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/Software Simplified Workflow for Project DEMO.xml\")"
],
[
"name": "Software Simplified Workflow for Project ITSM",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/Software Simplified Workflow for Project ITSM.xml\")"
],
[
"name": "Software Simplified Workflow for Project PROJ1",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/Software Simplified Workflow for Project PROJ1.xml\")"
],
[
"name": "Software Simplified Workflow for Project REQ",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/Software Simplified Workflow for Project REQ.xml\")"
],
[
"name": "Software Simplified Workflow for Project TEAM1",
"xml": "WorkflowsMigrator.getWorkflowText(\"${workflowsBase}/Software Simplified Workflow for Project TEAM1.xml\")"
]
]
)
workflowschemes ([
[
"name": "classic",
"description": "classic",
"mapping": [
"__null__": "classic default workflow"
]
],
[
"name": "DEMO: Software Simplified Workflow Scheme",
"description": "Generated by JIRA Software version 8.3.0-DAILY20190802161355. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.",
"mapping": [
"__null__": "Software Simplified Workflow for Project DEMO"
]
],
[
"name": "ITSM-\u95ee\u9898\u7c7b\u578b\u65b9\u6848",
"description": null,
"mapping": [
"__null__": "ITMS-DEFAULT",
"\u8bf7\u6c42\u5de5\u5355": "ITMS-DEFAULT",
"\u96c6\u6210\u7533\u8bf7": "ITMS-DEFAULT",
"\u53d1\u5e03\u7533\u8bf7": "ITMS-DEFAULT"
]
],
[
"name": "Jira Service Desk IT Support Workflow Scheme generated for Project SD",
"description": "This Jira Service Desk IT Support Workflow Scheme was generated for Project SD",
"mapping": [
"Incident": "SD: Incident Management workflow for Jira Service Desk",
"Task": "SD: Jira Service Desk default workflow",
"Service Request with Approvals": "SD: Service Request Fulfilment with Approvals workflow for Jira Service Desk",
"Service Request": "SD: Service Request Fulfilment workflow for Jira Service Desk",
"Sub-task": "SD: Jira Service Desk default workflow",
"Problem": "SD: Problem Management workflow for Jira Service Desk",
"Change": "SD: Change Management workflow for Jira Service Desk"
]
],
[
"name": "PROJ1: Software Simplified Workflow Scheme",
"description": "Generated by JIRA Software version 8.3.0-DAILY20190802161355. \u6b64\u5de5\u4f5c\u6d41\u65b9\u6848\u7531 Jira Software \u8fdb\u884c\u5185\u90e8\u7ba1\u7406\u3002\u8bf7\u52ff\u624b\u52a8\u4fee\u6539\u6b64\u5de5\u4f5c\u6d41\u65b9\u6848\u3002",
"mapping": [
"__null__": "Software Simplified Workflow for Project PROJ1"
]
],
[
"name": "REQ: Software Simplified Workflow Scheme",
"description": "Generated by JIRA Software version 8.3.0-DAILY20190802161355. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.",
"mapping": [
"__null__": "Software Simplified Workflow for Project REQ"
]
],
[
"name": "TEAM1: Software Simplified Workflow Scheme",
"description": "Generated by JIRA Software version 8.3.0-DAILY20190802161355. \u6b64\u5de5\u4f5c\u6d41\u65b9\u6848\u7531 Jira Software \u8fdb\u884c\u5185\u90e8\u7ba1\u7406\u3002\u8bf7\u52ff\u624b\u52a8\u4fee\u6539\u6b64\u5de5\u4f5c\u6d41\u65b9\u6848\u3002",
"mapping": [
"__null__": "Software Simplified Workflow for Project TEAM1"
]
],
[
"name": "\u526f\u672c DEMO: Software Simplified Workflow Scheme",
"description": "Generated by JIRA Software version 8.3.0-DAILY20190802161355. This workflow scheme is managed internally by Jira Software. Do not manually modify this workflow scheme.",
"mapping": [
"__null__": "Software Simplified Workflow for Project DEMO"
]
]
]
)
permissionschemes([
[
"name": "Default Permission Scheme",
"description": "This is the default Permission Scheme. Any new projects that are created will be assigned this scheme.",
"permissions": [
"ADMINISTER_PROJECTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"BROWSE_PROJECTS": [
"info": [
]
],
"CREATE_ISSUES": [
"info": [
]
],
"ADD_COMMENTS": [
"info": [
]
],
"CREATE_ATTACHMENTS": [
"info": [
]
],
"ASSIGN_ISSUES": [
"info": [
]
],
"ASSIGNABLE_USER": [
"info": [
]
],
"RESOLVE_ISSUES": [
"info": [
]
],
"LINK_ISSUES": [
"info": [
]
],
"EDIT_ISSUES": [
"info": [
]
],
"DELETE_ISSUES": [
"roles": [
"Administrators"
],
"info": [
]
],
"CLOSE_ISSUES": [
"info": [
]
],
"MOVE_ISSUES": [
"info": [
]
],
"SCHEDULE_ISSUES": [
"info": [
]
],
"MODIFY_REPORTER": [
"roles": [
"Administrators"
],
"info": [
]
],
"WORK_ON_ISSUES": [
"info": [
]
],
"DELETE_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_WORKLOGS": [
"info": [
]
],
"EDIT_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
],
"EDIT_OWN_WORKLOGS": [
"info": [
]
],
"VIEW_VOTERS_AND_WATCHERS": [
"info": [
]
],
"MANAGE_WATCHERS": [
"roles": [
"Administrators"
],
"info": [
]
],
"EDIT_ALL_COMMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"EDIT_OWN_COMMENTS": [
"info": [
]
],
"DELETE_ALL_COMMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_COMMENTS": [
"info": [
]
],
"DELETE_ALL_ATTACHMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_ATTACHMENTS": [
"info": [
]
],
"VIEW_DEV_TOOLS": [
"info": [
]
],
"VIEW_READONLY_WORKFLOW": [
"info": [
]
],
"TRANSITION_ISSUES": [
"info": [
]
],
"MANAGE_SPRINTS_PERMISSION": [
"roles": [
"Administrators"
],
"info": [
]
]
]
],
[
"name": "Default software scheme",
"description": "Default scheme for Software projects.",
"permissions": [
"BROWSE_PROJECTS": [
"info": [
]
],
"CREATE_ISSUES": [
"info": [
]
],
"EDIT_ISSUES": [
"info": [
]
],
"ASSIGN_ISSUES": [
"info": [
]
],
"RESOLVE_ISSUES": [
"info": [
]
],
"ADD_COMMENTS": [
"info": [
]
],
"DELETE_ISSUES": [
"roles": [
"Administrators"
],
"info": [
]
],
"ASSIGNABLE_USER": [
"info": [
]
],
"CLOSE_ISSUES": [
"info": [
]
],
"CREATE_ATTACHMENTS": [
"info": [
]
],
"WORK_ON_ISSUES": [
"info": [
]
],
"LINK_ISSUES": [
"info": [
]
],
"ADMINISTER_PROJECTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"MOVE_ISSUES": [
"info": [
]
],
"SCHEDULE_ISSUES": [
"info": [
]
],
"MODIFY_REPORTER": [
"roles": [
"Administrators"
],
"info": [
]
],
"VIEW_VOTERS_AND_WATCHERS": [
"info": [
]
],
"MANAGE_WATCHERS": [
"roles": [
"Administrators"
],
"info": [
]
],
"EDIT_ALL_COMMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"EDIT_OWN_COMMENTS": [
"info": [
]
],
"DELETE_ALL_COMMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_COMMENTS": [
"info": [
]
],
"DELETE_ALL_ATTACHMENTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_ATTACHMENTS": [
"info": [
]
],
"EDIT_OWN_WORKLOGS": [
"info": [
]
],
"EDIT_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_OWN_WORKLOGS": [
"info": [
]
],
"DELETE_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
],
"VIEW_READONLY_WORKFLOW": [
"info": [
]
],
"TRANSITION_ISSUES": [
"info": [
]
],
"VIEW_DEV_TOOLS": [
"info": [
]
],
"MANAGE_SPRINTS_PERMISSION": [
"info": [
]
]
]
],
[
"name": "Jira Service Desk Permission Scheme for Project SD",
"description": "This Jira Service Desk Permission Scheme was generated for Project SD",
"permissions": [
"ADMINISTER_PROJECTS": [
"roles": [
"Administrators"
],
"info": [
]
],
"SERVICEDESK_AGENT": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"BROWSE_PROJECTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"VIEW_DEV_TOOLS": [
"roles": [
"Administrators"
],
"info": [
]
],
"VIEW_READONLY_WORKFLOW": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"CREATE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"EDIT_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"SCHEDULE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"MOVE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"ASSIGN_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"ASSIGNABLE_USER": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"RESOLVE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"CLOSE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"MODIFY_REPORTER": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"LINK_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"TRANSITION_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"SET_ISSUE_SECURITY": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"VIEW_VOTERS_AND_WATCHERS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"MANAGE_WATCHERS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"ADD_COMMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"EDIT_ALL_COMMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"EDIT_OWN_COMMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_OWN_COMMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_ALL_COMMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_ALL_ATTACHMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"CREATE_ATTACHMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_OWN_ATTACHMENTS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"WORK_ON_ISSUES": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"EDIT_OWN_WORKLOGS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"DELETE_OWN_WORKLOGS": [
"roles": [
"Administrators",
"Service Desk Team"
],
"info": [
]
],
"EDIT_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
],
"DELETE_ALL_WORKLOGS": [
"roles": [
"Administrators"
],
"info": [
]
]
]
]
]
)
- No labels