aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/reference_fields/ad.sd
blob: 097a6ed5bc970c1c11d21b6d8cbf1f1370108964 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema ad {
  document ad {
    field campaign_ref type reference<campaign> {
      indexing: attribute | summary
    }
    field other_ref type reference<campaign> {
      indexing: attribute
    }
    field yet_another_ref type reference<campaign> {
      indexing: attribute
    }
  }
  document-summary explicit_summary {
    summary yet_another_ref {}
  }
}