summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/map_attribute/test.sd
blob: da31f575396e24d411c9431febbf9bcb28aa0b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
search test {
  document test {
    field str_map type map<string, string> {
      indexing: summary 
      struct-field key {
        indexing: attribute
      }
      struct-field value {
        indexing: attribute
      }
    }  
    field int_map type map<int, int> {
      indexing: summary 
      struct-field key {
        indexing: attribute
      }
    }  
  }
}