-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathschemas.edn
15 lines (15 loc) · 908 Bytes
/
schemas.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{:records {:Heartbeat [{:name "beat" :type :long}]
:ConfirmAccountCreation [:id :a-type]
:AccountCreationConfirmed [:id :iban :token :a-type]
:AccountCreationFailed [:id :reason]
:ConfirmMoneyTransfer [:id :token :amount {:name "from" :type :string} {:name "to" :type :string} :description]
:MoneyTransferConfirmed [:id]
:MoneyTransferFailed [:id :reason]
:BalanceChanged [:iban {:name "new-balance" :type :long} {:name "changed-by" :type :long} {:name "from-to" :type :string} :description]}
:types {:id {:name "Uuid" :type :fixed :size 16}
:a-type {:name "Atype" :type :enum :symbols ["AUTO" "MANUAL"]}
:reason :string
:iban :string
:token :string
:amount :long
:description :string}}