aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/inheritance/child.sd
blob: 315c77b1b604654c805e8848b10ff4fed61f8732 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright Yahoo. 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
    }

  }

}