Created
January 7, 2014 21:40
-
-
Save parkr/8307395 to your computer and use it in GitHub Desktop.
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
# LIST MAPPING | |
curl -s private:9200/users/_mapping | js | |
# CREATE MAPPING | |
curl -XPUT 'private:9200/zo/zo/_mapping' -d ' | |
{ | |
"zo_mapping" : { | |
"properties" : { | |
"curationCount" : {"type" : "long" }, | |
"featuredCount" : {"type" : "long" }, | |
"gridDesc" : {"type" : "string" }, | |
"gridExternal" : {"type" : "string" }, | |
"gridImage" : {"type" : "string" }, | |
"gridName" : {"type" : "string" }, | |
"lastUploadDate" : {"type" : "date" }, | |
"numberOfPhotos" : {"type" : "long" }, | |
"siteDomain" : {"type" : "string" }, | |
"siteId" : {"type" : "string" }, | |
"userFirstName" : {"type" : "string" }, | |
"userLastName" : {"type" : "string" }, | |
"userName" : {"type" : "string" }, | |
"userTwitter" : {"type" : "string" }, | |
"userId" : {"type" : "string" } | |
} | |
} | |
} | |
' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment