Files
codex/codex-rs/app-server-protocol/schema/json/v2/AppsListParams.json
Matthew Zeng 845e9fcf02 update
2026-02-07 21:40:33 -08:00

24 lines
570 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "EXPERIMENTAL - list available apps/connectors.",
"properties": {
"cursor": {
"description": "Opaque pagination cursor returned by a previous call.",
"type": [
"string",
"null"
]
},
"limit": {
"description": "Optional page size; defaults to a reasonable server-side value.",
"format": "uint32",
"minimum": 0.0,
"type": [
"integer",
"null"
]
}
},
"title": "AppsListParams",
"type": "object"
}