Properties
| Name | Type | Description |
|---|---|---|
| query | string | The query to search for. May match across multiple fields. |
| drive_id | string | ID of the drive to filter on |
| pass_through | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/FilesSearch",
"title": "FilesSearch",
"type": "object",
"x-apideck-schema-id": "FilesSearch",
"example": {
"query": "logo jpg"
},
"properties": {
"query": {
"type": "string",
"description": "The query to search for. May match across multiple fields.",
"example": "logo jpg"
},
"drive_id": {
"type": "string",
"description": "ID of the drive to filter on",
"example": "1234"
},
"pass_through": {
"$ref": "#/components/schemas/PassThroughBody"
}
},
"additionalProperties": false,
"required": [
"query"
]
}