aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/reference_from_several/bar.sd
blob: 47cd9b117aaed0e02179611593c0cf64bd72ef01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema bar {
    document bar {
        field bpref type reference<parent> {
            indexing: attribute
        }
        field bartitle type string {
            indexing: attribute
        }
    }
    import field bpref.x as barsximp {}
    document-summary other {
        summary bartitle {}
        summary barsximp {}
    }
}