Json RESTAPI jira-自定义字段

Json RESTAPI jira-自定义字段,json,jira,jira-rest-api,Json,Jira,Jira Rest Api,我想检索已在Jira中设置的customfield。当我执行以下操作时: http://website/rest/api/2/issue/{ID}?expand=customfield_13201 我得到下面的答案。。e、 g "customfield_13201": <a href=\"webpage"</a><br><br> <a href=\"webpage2" ... " “customfield\u 13201”:Use/rest/a

我想检索已在Jira中设置的customfield。当我执行以下操作时:

http://website/rest/api/2/issue/{ID}?expand=customfield_13201
我得到下面的答案。。e、 g

"customfield_13201": <a href=\"webpage"</a><br><br> <a href=\"webpage2" ... "

“customfield\u 13201”:Use/rest/api/2/field:GET返回所有字段的列表,包括系统字段和自定义字段。

Use/rest/api/2/field:GET返回所有字段的列表,包括系统字段和自定义字段。

如何获取字段架构属性,例如{“id”:“customfield\u 21992”,“name”:“Manager”,“Custom”:true,“orderable”:true,“navigable”:true,“searchable”:true,“clauseNames”:[“cf[21992],“Manager”],“schema”:{“type”:“user”,“custom”:“com.atlassian.jira.plugin.system.customfieldtypes:userpicker”,“customId”:21992}在上面的json中,模式类型是User。现在如何使用rest API获取用户模式属性如何获取字段模式属性,例如{“id”:“customfield_21992”,“name”:“Manager”,“custom”:true,“orderable”:true,“navigable”:true,“searchable”:true,“clauseNames”:[“cf[21992],“Manager”],“schema”:{“type”:“user”,“custom”:“com.atlassian.jira.plugin.system.customfieldtypes:userpicker”,“customId”:21992}}在上面的json中,schema类型是user。现在如何使用rest api获取用户模式属性