-
-
Save dadoonet/5902694 to your computer and use it in GitHub Desktop.
Test locale with multiple formats
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -XPUT http://localhost:9200/test/ticket/_mappinq? -d '{ | |
"ticket" : { | |
"properties" : { | |
"DOC_CREATION_DATE" : { | |
"type" : "date", | |
"format" : "yyyy-MM-dd || yyyy-MM-dd HH:mm:ss", | |
"locale" : "FR" | |
} | |
} | |
} | |
} | |
' | |
curl -XPUT http://localhost:9200/test/ticket/1 -d ' | |
{"DOC_CREATION_DATE" : "2012-05-12"} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment