OpenSearch/rest-api-spec/api/indices.delete_mapping.json

30 lines
850 B
JSON
Raw Normal View History

{
"indices.delete_mapping": {
"documentation": "http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/indices-delete-mapping.html",
"methods": ["DELETE"],
"url": {
"path": "/{index}/{type}/_mapping",
"paths": ["/{index}/{type}/_mapping", "/{index}/{type}"],
"parts": {
"index": {
"type" : "list",
"required" : true,
"description" : "A comma-separated list of index names; use `_all` for all indices"
},
"type": {
"type" : "string",
2013-06-09 15:17:29 -04:00
"required" : true,
"description" : "The name of the document type to delete"
}
},
"params": {
"master_timeout": {
"type" : "time",
"description" : "Specify timeout for connection to master"
}
}
},
"body": null
}
}