aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/ranktypes/ranktypes.sd
blob: e9fc8606e4c0a7be12dfb5b92aaf211aa25304e1 (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
# Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search ranktypes {

  document ranktypes {

    field title type string {
      indexing: summary | index
      rank-type: identity
    }

    field descr type string {
      indexing: summary | index
      rank-type: about
    }

    field keywords type string {
      indexing: index
      rank-type: tags
    }

    field identity type string {
      indexing: index
      rank: literal
    }

  }

  rank-profile override inherits default  {
    rank-type descr: identity
  }

}