aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/examples/header_body.sd
blob: 65d6937b65c2b0a2c7a1951330165ed6fc67f961 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Copyright 2019 Verizon Media 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
    }
  }
}