aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/structanyorder/structanyorder.sd
blob: 26199ac760dc3279d690dae87aed382c0a01364a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema annotationsimplicitstruct {

  document annotationsimplicitstruct {
      field structfield type sct {
      }

      field structarrayfield type array<sct> {
      }

  annotation banana {
    field b type sct { }
    field c type foo { }
  }

  struct sct {
    field s1 type string {}
    field s2 type string {}
    field s3 type sct {}
    field s4 type foo {}
  }

  struct foo {
    field s1 type int {}
  }
  }
}