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

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

}