mirror of
https://github.com/openai/codex.git
synced 2026-04-28 02:11:08 +03:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"FsReadDirectoryEntry": {
|
|
"description": "A directory entry returned by `fs/readDirectory`.",
|
|
"properties": {
|
|
"fileName": {
|
|
"description": "Direct child entry name only, not an absolute or relative path.",
|
|
"type": "string"
|
|
},
|
|
"isDirectory": {
|
|
"description": "Whether this entry resolves to a directory.",
|
|
"type": "boolean"
|
|
},
|
|
"isFile": {
|
|
"description": "Whether this entry resolves to a regular file.",
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"required": [
|
|
"fileName",
|
|
"isDirectory",
|
|
"isFile"
|
|
],
|
|
"type": "object"
|
|
}
|
|
},
|
|
"description": "Directory entries returned by `fs/readDirectory`.",
|
|
"properties": {
|
|
"entries": {
|
|
"description": "Direct child entries in the requested directory.",
|
|
"items": {
|
|
"$ref": "#/definitions/FsReadDirectoryEntry"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"entries"
|
|
],
|
|
"title": "FsReadDirectoryResponse",
|
|
"type": "object"
|
|
} |