aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/lowercase/lowercase.sd
blob: 80edc8378307c5560c86877492b15a1a73945145 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema lowercase {

  document lowercase {

    field single_field_source type string {
    }

    field array_field_source type array<string> {
    }

  }

  field single_field type string {
    indexing: input single_field_source | lowercase | summary | index
  }

  field array_field type array<string> {
    indexing: input array_field_source | for_each { lowercase } | summary | index
  }

}