config-schema.dhall

 1{ activation_amount : Natural
 2, admins : List Text
 3, adr : Text
 4, bandwidth_peer : Text
 5, bandwidth_site : Text
 6, braintree :
 7    { environment : Text
 8    , merchant_accounts : { CAD : Text, USD : Text }
 9    , merchant_id : Text
10    , private_key : Text
11    , public_key : Text
12    }
13, catapult :
14    { application_id : Text
15    , domain : Text
16    , secret : Text
17    , sip_host : Text
18    , token : Text
19    , user : Text
20    }
21, component : { jid : Text, secret : Text }
22, credit_card_url : forall (jid : Text) -> forall (customer_id : Text) -> Text
23, creds : { account : Text, password : Text, username : Text }
24, electrum : { rpc_password : Text, rpc_uri : Text, rpc_username : Text }
25, electrum_notify_url :
26    forall (address : Text) -> forall (customer_id : Text) -> Text
27, interac : Text
28, notify_admin : Text
29, notify_from : Text
30, ogm_path : Text
31, ogm_web_root : Text
32, oxr_app_id : Text
33, payable : Text
34, plans :
35    List
36      { currency : < CAD | USD >
37      , messages :
38          < limited : { included : Natural, price : Natural } | unlimited >
39      , minutes :
40          < limited : { included : Natural, price : Natural } | unlimited >
41      , monthly_price : Natural
42      , name : Text
43      }
44, server : { host : Text, port : Natural }
45, sgx : Text
46, sip : { app : Text, realm : Text }
47, sip_host : Text
48, upstream_domain : Text
49, web : < Inet : { interface : Text, port : Natural } | Unix : Text >
50, web_register : { from : Text, to : Text }
51, web_root : Text
52, xep0157 : List { label : Text, value : Text, var : Text }
53}