{ "properties": { "date": { "type": "date","format": "yyyy/MM/dd HH:mm:ssZ" }, "name": { "type": "text" }, "price": { "type": "long" } } } } # handson_index_posの構成の確認 GET handson_index_pos # データ格納 PUT handson_index_pos/_doc/1 { "date":"2021/03/01 09:00:00+0900", "name":"りんご、ばなな、めろん", "price":"300" } PUT handson_index_pos/_doc/2 { "date":"2021/03/01 09:10:00+0900", "name":"ばなな、すいか、めろん", "price":"500" } PUT handson_index_pos/_doc/3 { "date":"2021/03/01 09:20:00+0900", "name":"りんご、ばなな", "price":"200" } PUT handson_index_pos/_doc/4 { "date":"2021/03/01 09:30:00+0900", "name":"すいか、かぼちゃ", "price":"400" }