config-schema.dhall

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