This commit is contained in:
Matthew Zeng
2026-03-20 11:17:55 -07:00
parent 403b397e4e
commit da838ef284
18 changed files with 896 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{
"$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"
}