Skip to content

Commit

Permalink
LR-704 | Elasticsearch mapping updated (#3924)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumarks1122 authored Dec 28, 2023
1 parent 59a2c5b commit 09e96a1
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion ansible/roles/es-mapping/files/mappings/userv3-mapping.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
{
"dynamic": false,
"dynamic": "true",
"dynamic_templates": [
{
"framework_fields": {
"path_match": "framework.*",
"mapping": {
"fields": {
"raw": {
"type": "text",
"analyzer": "keylower"
}
},
"analyzer": "cs_search_analyzer",
"search_analyzer": "cs_search_analyzer"
}
}
},
{
"non_indexable_fields": {
"path_match": "*",
"path_unmatch": "framework.*",
"mapping": {
"index": false
}
}
}
],
"properties": {
"managedBy": {
"type": "keyword",
Expand Down

0 comments on commit 09e96a1

Please sign in to comment.