mirror of
https://github.com/openai/codex.git
synced 2026-09-14 11:57:03 +00:00
19 lines
440 B
JSON
Generated
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"
|
|
} |