aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/nextgen/boldedsummaryfields.sd
blob: 82d986e8e9c3a78a7f07f2a6c479fe68f7593649 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search boldedsummaryfields {
    document boldedsummaryfields {
        field foo type string {
            indexing: index | summary
            summary bar {
                source: foo
                bolding: on
            }
        }
        field baz type string {
            indexing: attribute | summary
            summary cox {
                source: baz
                bolding: on
            }
        }
    }
}