Feat: enhance metadata arranging. (#12745)

### What problem does this PR solve?
#11564

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Kevin Hu
2026-01-22 15:34:08 +08:00
committed by GitHub
parent bc7b864a6c
commit 3beb85efa0
10 changed files with 195 additions and 129 deletions

View File

@ -2221,8 +2221,14 @@ Success:
"code": 0,
"data": {
"summary": {
"tags": [["bar", 2], ["foo", 1], ["baz", 1]],
"author": [["alice", 2], ["bob", 1]]
"tags": {
"type": "string",
"values": [["bar", 2], ["foo", 1], ["baz", 1]]
},
"author": {
"type": "string",
"values": [["alice", 2], ["bob", 1]]
}
}
}
}