aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/annotationsreference/annotationsreference.sd
blob: 0a7cec65943360578bec9aa7f7a379287d594673 (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 annotationsreference {

  document annotationsreference {

    annotation banana {
      field brand type string { }
    }

    annotation food {
      field what type annotationreference<banana> { }
    }

    annotation cyclic {
      field blah type annotationreference<cyclic> { }
    }

    annotation a {
      field foo type annotationreference<b> { }
    }

    annotation b {
    }

  }

}