PUT movies_v1 { "mappings" : { "dynamic" : "strict", "properties" : { "directors" : { "type": "nested", "properties" : { "id" : { "type" : "integer" }, "name" : { "type" : "text" } } }, "genres" : { "type": "nested", "properties" : { "id" : { "type" : "integer" }, "name" : { "type" : "text" } } }, "poster" : { "type" : "keyword" }, "rate" : { "type" : "float" }, "title" : { "type" : "text" }, "title_org" : { "type" : "text" }, "type" : { "type" : "keyword" }, "year" : { "type" : "short" } } } }