aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/duplicate_struct/foobar.sd
blob: feb0685207298614d5cb46226f1b31a001f4ffe4 (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 foobar {
  document foobar inherits foo {
    field title type string {
      indexing: summary | index
    }
  }

  struct mystruct {
    field name type string { }
    field company type string { }
  }

}