Fix typo for JSON fields

(cherry picked from commit 63c60b8)
This commit is contained in:
David Pilato 2014-06-03 09:24:05 +02:00
parent 4d63130a23
commit 8855bd7ddc
1 changed files with 5 additions and 5 deletions

View File

@ -81,13 +81,13 @@ Both the meta data and the actual content are simple core type mappers (string,
"type" : "attachment", "type" : "attachment",
"fields" : { "fields" : {
"file" : {"index" : "no"}, "file" : {"index" : "no"},
"title" : {store : "yes"}, "title" : {"store" : "yes"},
"date" : {"store" : "yes"}, "date" : {"store" : "yes"},
"author" : {"analyzer" : "myAnalyzer"}, "author" : {"analyzer" : "myAnalyzer"},
"keywords" : {store : "yes"}, "keywords" : {"store" : "yes"},
"content_type" : {store : "yes"}, "content_type" : {"store" : "yes"},
"content_length" : {store : "yes"}, "content_length" : {"store" : "yes"},
"language" : {store : "yes"} "language" : {"store" : "yes"}
} }
} }
} }