aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/annotationsinheritance/annotationsinheritance.sd
blob: 256fb98ae8ac88c8e45d24e92e1a09d9cfa3697f (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
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
schema annotationsinheritance {

  document annotationsinheritance {

  annotation fruit {
  }

  annotation banana inherits fruit {
    field brand type string { }
  }

  annotation vehicle {
    field numwheels type int { }
  }

  annotation car inherits vehicle {
    field color type string { }
  }

  annotation intern inherits employee {
    field enddate type long { }
  }

  annotation employee inherits worker {
    field employeeid type int { }
  }

  annotation worker inherits person {
  }

  annotation person {
    field name type string { }
  }

  }


}