지금까지 테스트 문제를 만들었지 만 필드를 채우는 올바른 JSON 구조를 찾을 수 없습니다. customfield_11101, 이름 : Zephyr Teststep 필요 : 거짓, 유형 : 어떤Jira REST API, 테스트 세부 정보가 포함 된 유형 테스트 문제를 생성하는
나는 이런 식으로 뭔가 할 수 있도록하고 싶습니다:
var issueTest = {
"fields": {
"issuetype": {
"name": "Test"
},
"project":
{
"key": "STORYKEY"
},
"summary": "Navigate to a Different Region",
"description": "",
"assignee": {
"name": "[email protected]"
},
"customfield_10014": "SOMEKEY",
"duedate": "2018-10-03",
"priority": {
"name": "Blocker"
},
"labels": ["label1", "label2"],
"customfield_19416": "50h",
"customfield_19719": {
"value": "minor"
},
"customfield_11101": [
{
"Test Step": "some text",
"Test Data": "some text",
"Test Result": "some text"
},
{
"Test Step": "some text",
"Test Data": "some text",
"Test Result": "some text"
},
{
"Test Step": "some text",
"Test Data": "some text",
"Test Result": "some text"
}
]
}
};