hi,
we have an index with static mappings and there are 2 fields with the same type -
field_x : {
"type" : "date",
"format" : "dateOptionalTime"
}
similarly, another field is called field_y with the same type and format.
the documents are created using java api and fields are set using Date objects. but what is strange is that the json output from GET command shows the values in different format.
e.g.
field_x : 1438396514958
field_y : 2015-08-01T00:35:25.000Z
what could be the reason for this?
thanks