1type PublicKey data<128>2type Time string # ISO 860134enum Department {5 ACCOUNTING6 ADMINISTRATION7 CUSTOMER_SERVICE8 DEVELOPMENT910 # Reserved for the CEO11 JSMITH = 9912}1314type Customer {15 name: string16 email: string17 address: Address18 orders: []{19 orderId: i6420 quantity: i3221 }22 metadata: map[string]data23}2425type Employee {26 name: string27 email: string28 address: Address29 department: Department30 hireDate: Time31 publicKey: optional<PublicKey>32 metadata: map[string]data33}3435type TerminatedEmployee void3637type Person (Customer | Employee | TerminatedEmployee)3839type Address {40 address: [4]string41 city: string42 state: string43 country: string44}