I have the following JSON format and want to create a mapping for it from Elasticsearch console :
{
"properties": {
"@timestamp" : {
"type" : "date"
},
"list": [
{
"name": "John",
"age": "37",
"title": "Tester"
}
]
}
}