mirror of
https://github.com/openai/codex.git
synced 2026-04-25 07:05:38 +00:00
32 lines
499 B
JSON
32 lines
499 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"cancellationToken": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"includeDirs": {
|
|
"type": [
|
|
"boolean",
|
|
"null"
|
|
]
|
|
},
|
|
"query": {
|
|
"type": "string"
|
|
},
|
|
"roots": {
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": "array"
|
|
}
|
|
},
|
|
"required": [
|
|
"query",
|
|
"roots"
|
|
],
|
|
"title": "FuzzyFileSearchParams",
|
|
"type": "object"
|
|
} |