aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/attributesexactmatch.sd
blob: 5529906adcebf70cd4b1ee3894f1accff1d8238b (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search music {
  document music {

    field color type string {
       indexing: index
       match {
         exact
       }
    }

    field artist type string {
      indexing: attribute
    }

    field drummer type string {
       indexing: attribute
    }

    field guitarist type string {
       indexing: attribute
       match {
         token
       }
    }

    field title type string {
      indexing: index  | attribute
    }

    field genre type string {
    }

    field trumpetist type string {
      indexing: attribute | index
    }

    field saxophonist type string {
      indexing: summary 
    }

    field flutist type string {
      indexing: attribute | index
      match {
        token
      }
    }
  }

  field saxophonist_arr type array<string> {
    indexing: input saxophonist | split ";" | attribute 
  }
}