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

43 lines
798 B
JSON

{
"settings": {
"number_of_shards": 1,
"number_of_replicas": 0
},
"mappings": {
"_doc": {
"properties": {
"domain": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword"
},
"english": {
"type": "text",
"analyzer": "english"
}
}
},
"description": {
"type": "text",
"fields": {
"english": {
"type": "text",
"analyzer": "english"
}
}
},
"type": {
"type": "keyword"
},
"user_count": {
"type": "integer"
},
"opt_out": {
"type": "boolean"
}
}
}
}
}