aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/reference_fields/ad.sd
blob: a39ec2f67abc43cad4c256dac01dd75a07280864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Copyright Yahoo. 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 type reference<campaign> {}
  }
}