Files
codex/codex-rs/app-server-protocol/schema/json/v2/FsReadFileReadResponse.json
2026-06-09 07:17:12 -07:00

19 lines
440 B
JSON
Generated

{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Bounded bytes returned by `fs/readFile/read`.",
"properties": {
"dataBase64": {
"type": "string"
},
"eof": {
"description": "No bytes beyond this response were available at the time of the read.",
"type": "boolean"
}
},
"required": [
"dataBase64",
"eof"
],
"title": "FsReadFileReadResponse",
"type": "object"
}