OpenSearch/rest-api-spec/api/indices.exists.types.json

32 lines
917 B
JSON

{
"indices.exists.types": {
"documentation": "http://www.elasticsearch.org/guide/reference/api/admin-indices-types-exists/",
"methods": ["HEAD"],
"url": {
"path": "/{index}/{type}",
"paths": ["/{index}/{type}"],
"parts": {
"index": {
"type" : "list",
"required" : true,
"description" : "A comma-separated list of index names; use `_all` to check the types across all indices"
},
"type": {
"type" : "list",
"required" : true,
"description" : "A comma-separated list of document types to check"
}
},
"params": {
"ignore_indices": {
"type" : "enum",
"options" : ["none","missing"],
"default" : "none",
"description" : "When performed on multiple indices, allows to ignore `missing` ones"
}
}
},
"body": null
}
}