aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/casing.sd
blob: 7564934949be3330a5080c44000188eb3e9ffb54 (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
54
55
56
57
58
59
60
61
62
# 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
       alias color: Colour
       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 {
      indexing: index
      alias Foo: sjanger
    }

    field Price type string {
      indexing: index
      alias: Cost    
    }

    field Trumpetist type string {
      indexing: attribute | index
    }

    field Saxophonist type string {
      indexing: summary | attribute Saxophonist
    }
    
    field TenorSaxophonist type array<string> {
      indexing: summary | attribute
    }

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

  }
}