aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/inheritance/child.sd
blob: bf0e509ca281b8c546779b668ee839c746616a2f (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 child {

  document child inherits father, mother {
    
    field onlychild type string {
      indexing: index
    }

    field overridden type int {
      indexing: index
    }

  }

}