this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

search: japanese search schemas

+29
+29
search/post_schema.json
··· 22 22 "tokenizer": "icu_tokenizer", 23 23 "char_filter": [ "icu_normalizer" ], 24 24 "filter": [ "icu_folding" ] 25 + }, 26 + "textJapanese": { 27 + "type": "custom", 28 + "tokenizer": "kuromoji_tokenizer", 29 + "char_filter": [ "icu_normalizer" ], 30 + "filter": [ 31 + "kuromoji_baseform", 32 + "kuromoji_part_of_speech", 33 + "cjk_width", 34 + "ja_stop", 35 + "kuromoji_stemmer", 36 + "lowercase" 37 + ] 38 + }, 39 + "textJapaneseSearch": { 40 + "type": "custom", 41 + "tokenizer": "kuromoji_tokenizer", 42 + "char_filter": [ "icu_normalizer" ], 43 + "filter": [ 44 + "kuromoji_baseform", 45 + "kuromoji_part_of_speech", 46 + "cjk_width", 47 + "ja_stop", 48 + "kuromoji_stemmer", 49 + "lowercase" 50 + ] 25 51 } 26 52 }, 27 53 "normalizer": { ··· 49 75 50 76 "created_at": { "type": "date" }, 51 77 "text": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch", "copy_to": "everything" }, 78 + "text_ja": { "type": "text", "analyzer": "textJapanese", "search_analyzer": "textJapaneseSearch", "copy_to": "everything_ja" }, 52 79 "lang_code": { "type": "keyword", "normalizer": "default" }, 53 80 "lang_code_iso2": { "type": "keyword", "normalizer": "default" }, 54 81 "mention_did": { "type": "keyword", "normalizer": "default" }, ··· 58 85 "reply_root_aturi": { "type": "keyword", "normalizer": "default" }, 59 86 "embed_img_count": { "type": "integer" }, 60 87 "embed_img_alt_text": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch", "copy_to": "everything" }, 88 + "embed_img_alt_text_ja": { "type": "text", "analyzer": "textJapanese", "search_analyzer": "textJapaneseSearch", "copy_to": "everything_ja" }, 61 89 "self_label": { "type": "keyword", "normalizer": "default" }, 62 90 63 91 "tag": { "type": "keyword", "normalizer": "default" }, 64 92 "emoji": { "type": "keyword", "normalizer": "caseSensitive" }, 65 93 66 94 "everything": { "type": "text", "analyzer": "textIcu", "search_analyzer": "textIcuSearch" }, 95 + "everything_ja": { "type": "text", "analyzer": "textJapanese", "search_analyzer": "textJapaneseSearch" }, 67 96 68 97 "lang": { "type": "alias", "path": "lang_code_iso2" } 69 98 }