Elasticsearch - Mappings and Data Types
Given this mapping and document, what will be the stored value for the
created_at field?{"mappings": {"properties": {"created_at": {"type": "date", "format": "yyyy/MM/dd HH:mm"}}}}
{"created_at": "2023/07/15 14:30"}