I need to define the format
for the date
field in my index
{
"mappings": {
"properties": {
"date": {
"type": "date",
"format": "???"
}
}
}
}
to cover values like February 10th 2021, 23:59:58.556
.
I tried MMMM DD YYYY, HH:mm:ss.SSS
but it doesn't work.