aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/inheritdiamond/child.sd
blob: 82cbd487e8d44d8c0f1106d0daf0c58828de39e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema child {
    document child inherits mother, father {
        struct child_struct {
            field child_field type string { }
        }
        field foo type grandparent_struct { }
        field bar type mother_struct { }
        field baz type father_struct { }
        field cox type child_struct { }
    }
}