reset-searchable-attributes
Reset searchable attributes to their default values for a specified Meilisearch index, ensuring consistent search behavior and configuration management.
Instructions
Reset the searchable attributes setting to its default value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
}
},
"required": [
"indexUid"
],
"type": "object"
}