get_index_mappings
Retrieve the field structure and data types of an Elasticsearch index to understand its schema and data organization.
Instructions
Get the mappings of a specific Elasticsearch index.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| index | Yes |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"title": "Index",
"type": "string"
}
},
"required": [
"index"
],
"type": "object"
}