aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/header_body.sd
blob: 561ec47b067c91e320a92dfaa2f1719d3219a55e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# Search definition with (ignored) header and body statements
# TODO: Remove in Vespa 8
search header_body {

  document header_body {

    field title type string {
      indexing: summary | index
      header
    }

    field description type string {
      indexing: summary | index
      body
    }
  }
}