Use snake casing for document field (#45432)

This commit updates the search example to use snake casing for the document field. This is consistent with other examples
This commit is contained in:
Russ Cam 2019-09-19 22:26:31 +10:00 committed by Luca Cavanna
parent f1de8c0193
commit e467dddd4c
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ the user name:
POST /twitter/_doc?routing=kimchy
{
"user" : "kimchy",
"postDate" : "2009-11-15T14:12:12",
"post_date" : "2009-11-15T14:12:12",
"message" : "trying out Elasticsearch"
}
--------------------------------------------------