Files
codex/codex-rs/app-server-protocol/schema/json/FuzzyFileSearchParams.json
2026-02-03 10:53:48 -08:00

33 lines
582 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"cancellationToken": {
"type": [
"string",
"null"
]
},
"includeDirs": {
"description": "When true, include matching directories in search results.",
"type": [
"boolean",
"null"
]
},
"query": {
"type": "string"
},
"roots": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"query",
"roots"
],
"title": "FuzzyFileSearchParams",
"type": "object"
}