GET _search
{
  "query": { "match_all": {} }
}

#preceeding comment
GET _stats?level=shards

#in between comment

PUT index_1/type1/1
{
  "f": 1
}

PUT index_1/type1/2
{
  "f": 2
}

# comment


GET index_1/type1/1/_source?_source_include=f

DELETE index_2


POST /_sql?format=txt
{
  "query": "SELECT prenom FROM claude_index WHERE prenom = 'claude' ",
  "fetch_size": 1
}
