aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/nextgen/boldedsummaryfields.sd
blob: 335ffff31ac5edf6afbd310e8534f9c0b40d1155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright Vespa.ai. 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
            }
        }
    }
}