-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfts-index-basic.json
More file actions
32 lines (32 loc) · 932 Bytes
/
Copy pathfts-index-basic.json
File metadata and controls
32 lines (32 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"type": "fulltext-index",
"name": "REPLACE_INDEX_NAME",
"sourceType": "gocbcore",
"sourceName": "REPLACE_BUCKET",
"params": {
"mapping": {
"default_analyzer": "standard",
"default_mapping": { "enabled": false },
"types": {
"REPLACE_SCOPE.REPLACE_COLLECTION": {
"enabled": true,
"properties": {
"REPLACE_TEXT_FIELD": {
"fields": [{ "type": "text", "analyzer": "en", "index": true, "store": false }]
},
"REPLACE_KEYWORD_FIELD": {
"fields": [{ "type": "text", "analyzer": "keyword", "index": true }]
},
"REPLACE_NUMERIC_FIELD": {
"fields": [{ "type": "number", "index": true }]
},
"REPLACE_DATE_FIELD": {
"fields": [{ "type": "datetime", "index": true }]
}
}
}
}
}
},
"sourceParams": {}
}