Files
codex/codex-rs/app-server-protocol/schema/json/FuzzyFileSearchParams.json
2026-02-03 11:54:30 -08:00

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"
}