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
33
34
35
36
|
{
"properties": {
"entityType": {
"type": "string",
"analyzer": "ngram_analyzer",
"search_analyzer": "ngram_analyzer"
},
"entityPrimaryKeyValue": {
"type": "string",
"index": "not_analyzed"
},
"searchTagIDs": {
"type": "string"
},
"searchTags": {
"type": "string",
"analyzer": "ngram_analyzer"
},
"perspectives" : {
"type": "string",
"index": "not_analyzed"
},
"crossEntityReferenceValues": {
"type": "string",
"analyzer": "ngram_analyzer"
},
"link": {
"type": "string",
"index": "not_analyzed"
},
"lastmodTimestamp": {
"type": "date",
"format": "MMM d y HH:m:s||dd-MM-yyyy HH:mm:ss||yyyy-MM-dd'T'HH:mm:ss.SSSZZ||yyyy-MM-dd HH:mm:ss||MM/dd/yyyy||yyyyMMdd'T'HHmmssZ"
}
}
}
|