Files
codex/codex-rs/app-server-protocol/schema/json/v2/ThreadLoadedListParams.json
2026-05-04 14:17:35 -07:00

27 lines
646 B
JSON
Generated

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"cursor": {
"description": "Opaque pagination cursor returned by a previous call.",
"type": [
"string",
"null"
]
},
"includeSummaries": {
"description": "When true, include lightweight metadata for each loaded thread in the page.",
"type": "boolean"
},
"limit": {
"description": "Optional page size; defaults to no limit.",
"format": "uint32",
"minimum": 0.0,
"type": [
"integer",
"null"
]
}
},
"title": "ThreadLoadedListParams",
"type": "object"
}