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

32 lines
798 B
JSON
Raw Normal View History

{
"indices.put_template": {
"documentation": "",
"methods": ["PUT", "POST"],
"url": {
"path": "/_template/{name}",
"paths": ["/_template/{name}"],
"parts": {
"name": {
"type" : "string",
"required" : true,
"description" : "The name of the template"
}
},
"params": {
"order": {
"type" : "number",
"description" : "The order for this template when merging multiple matching ones (higher numbers are merged later, overriding the lower numbers)"
},
"timeout": {
"type" : "time",
"description" : "Explicit operation timeout"
}
}
},
"body": {
2013-06-08 09:34:13 -04:00
"description" : "The template definition",
"required" : true
}
}
}