Files
codex/codex-rs/app-server-protocol/schema/json/v2/InboxListResponse.json
Matthew Zeng da838ef284 update
2026-03-20 11:17:55 -07:00

15 lines
365 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Tracked inbox records are returned as the on-disk JSON shape defined by the sort-inbox skill's thread record format.",
"properties": {
"data": {
"items": true,
"type": "array"
}
},
"required": [
"data"
],
"title": "InboxListResponse",
"type": "object"
}