1EntityModel:
2    simple_type*=SimpleType
3    entities+=Entity
4;
5
6Entity:
7    'entity' name=ID '{'
8        properties+=Property
9    '}'
10;
11
12Property:
13    name=ID ':' type=[Type]
14;
15
16Type:
17    SimpleType | Entity
18;
19
20SimpleType:
21    'type' name=ID
22;
23