gcn_id)或一篇论文元数据(paper_metadata_id),用于定位反馈针对的具体对象。POST/api/v1/feedbackapplication/json200,业务结果以响应体中的 code 字段为准(0 表示成功)。type 必填,且必须是 bug / feature / question 之一,不区分大小写;content 必填,trim 后不能为空字符串;gcn_id 与 paper_metadata_id 均可选,可同时为空,但不能同时非空(防止语义混淆)。| 参数名 | 类型 | 必填 | 说明 |
|---|---|---|---|
| type | string | 是 | 反馈类型枚举,可选值:bug(缺陷)、feature(需求)、question(问题),不区分大小写 |
| content | string | 是 | 反馈正文内容,trim 后不能为空 |
| gcn_id | string | 否 | 关联的 GCN 节点 ID;与 paper_metadata_id 不能同时非空 |
| paper_metadata_id | string | 否 | 关联的论文元数据 ID;与 gcn_id 不能同时非空 |
{
"type": "bug",
"content": "推理链查询返回结果中缺少前提节点,疑似数据缺失",
"gcn_id": "gcn_abc123",
"paper_metadata_id": ""
}