aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/map_attribute/test.sd
blob: 70437102dfc2be5e9ca11808e4dab90f25bd879e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema test {
  document test {
    field str_map type map<string, string> {
      indexing: summary 
      struct-field key {
        indexing: attribute
        attribute: fast-search
      }
      struct-field value {
        indexing: attribute
      }
    }  
    field int_map type map<int, int> {
      indexing: summary 
      struct-field key {
        indexing: attribute
      }
    }  
  }
}