Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. PUT json/try/1
  2. {
  3. "name":"rajesh",
  4. "emp id":236947,
  5. "dob":"28-02-1989"
  6. }
  7.  
  8. PUT /json/try/_mapping
  9. {
  10. "dob": {
  11. "type" : "date",
  12. "format" : "dd-mm-yyyy"}
  13. }
  14.  
  15. PUT json/try/_mapping
  16. {
  17. "try":{
  18. "properties": {
  19. "dob":{
  20. "type": "date"
  21. , "format": "date"
  22. }
  23. }
  24. }
  25. }`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement