Files
codex/codex-rs/app-server-protocol/schema/json/v2/FsReadFileOpenResponse.json
2026-06-09 17:31:37 -07:00

17 lines
473 B
JSON
Generated

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Successful response for `fs/readFile/open`.",
"properties": {
"maxChunkBytes": {
"description": "Maximum decoded bytes returned by one read.\n\nClients may use this value to size reusable read buffers.",
"format": "uint32",
"minimum": 0.0,
"type": "integer"
}
},
"required": [
"maxChunkBytes"
],
"title": "FsReadFileOpenResponse",
"type": "object"
}