I got an issue createmeta using jira open /api/rest/api/2/issue/createmeta/10204/issuetypes/10303. And I got some meta data likes
{
"maxResults": 50,
"startAt": 0,
"total": 15,
"isLast": true,
"values": [{
"required": false,
"schema": {
"type": "string",
"system": "description"
},
"name": "Description",
"fieldId": "description",
"hasDefaultValue": false,
"operations": [
"set"
]
},{
"required": true,
"schema": {
"type": "string",
"system": "summary"
},
"name": "Summary",
"fieldId": "summary",
"hasDefaultValue": false,
"operations": [
"set"
]
}]
}
The filed meta has the same schema type string, but in fact they have different render, description has wiki render and the other has text render. But I cannot know how to render this on my own website.
Could you help me out this? Thanks.