index.community/backend/priv/elasticsearch/instances.json

43 lines
798 B
JSON
Raw Normal View History

2019-07-26 22:30:11 +00:00
{
"settings": {
"number_of_shards": 1,
2019-08-02 21:25:39 +00:00
"number_of_replicas": 0
2019-07-26 22:30:11 +00:00
},
"mappings": {
"_doc": {
"properties": {
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
2019-08-02 21:25:39 +00:00
},
"english": {
"type": "text",
"analyzer": "english"
2019-07-26 22:30:11 +00:00
}
}
},
"description": {
"type": "text",
"fields": {
"english": {
"type": "text",
"analyzer": "english"
}
}
},
"type": {
"type": "keyword"
},
"user_count": {
"type": "integer"
},
"opt_out": {
"type": "boolean"
2019-07-26 22:30:11 +00:00
}
}
}
}
}