@hyperscale0/hsx 1.0.0-beta.1 → 1.0.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (234) hide show
  1. package/CHANGELOG.md +41 -9
  2. package/LICENSING.md +3 -3
  3. package/README.md +37 -149
  4. package/TRADEMARKS.md +4 -4
  5. package/dist/src/ast.d.ts +129 -10
  6. package/dist/src/ast.d.ts.map +1 -1
  7. package/dist/src/cli.d.ts +2 -1
  8. package/dist/src/cli.d.ts.map +1 -1
  9. package/dist/src/cli.js +148 -12
  10. package/dist/src/cli.js.map +1 -1
  11. package/dist/src/compile.d.ts +41 -4
  12. package/dist/src/compile.d.ts.map +1 -1
  13. package/dist/src/compile.js +82 -15
  14. package/dist/src/compile.js.map +1 -1
  15. package/dist/src/cost.d.ts +78 -0
  16. package/dist/src/cost.d.ts.map +1 -0
  17. package/dist/src/cost.js +369 -0
  18. package/dist/src/cost.js.map +1 -0
  19. package/dist/src/diagnostics.d.ts +11 -0
  20. package/dist/src/diagnostics.d.ts.map +1 -0
  21. package/dist/src/diagnostics.js +420 -0
  22. package/dist/src/diagnostics.js.map +1 -0
  23. package/dist/src/emit.d.ts +35 -0
  24. package/dist/src/emit.d.ts.map +1 -0
  25. package/dist/src/emit.js +359 -0
  26. package/dist/src/emit.js.map +1 -0
  27. package/dist/src/entry-overrides.d.ts +17 -3
  28. package/dist/src/entry-overrides.d.ts.map +1 -1
  29. package/dist/src/entry-overrides.js +180 -35
  30. package/dist/src/entry-overrides.js.map +1 -1
  31. package/dist/src/format.d.ts +10 -0
  32. package/dist/src/format.d.ts.map +1 -0
  33. package/dist/src/format.js +183 -0
  34. package/dist/src/format.js.map +1 -0
  35. package/dist/src/index.d.ts +10 -4
  36. package/dist/src/index.d.ts.map +1 -1
  37. package/dist/src/index.js +8 -3
  38. package/dist/src/index.js.map +1 -1
  39. package/dist/src/ir.d.ts +66 -0
  40. package/dist/src/ir.d.ts.map +1 -0
  41. package/dist/src/ir.js +15 -0
  42. package/dist/src/ir.js.map +1 -0
  43. package/dist/src/lex.d.ts +9 -1
  44. package/dist/src/lex.d.ts.map +1 -1
  45. package/dist/src/lex.js +50 -4
  46. package/dist/src/lex.js.map +1 -1
  47. package/dist/src/limits.d.ts +2 -3
  48. package/dist/src/limits.d.ts.map +1 -1
  49. package/dist/src/limits.js +2 -3
  50. package/dist/src/limits.js.map +1 -1
  51. package/dist/src/modules.d.ts +36 -0
  52. package/dist/src/modules.d.ts.map +1 -0
  53. package/dist/src/modules.js +372 -0
  54. package/dist/src/modules.js.map +1 -0
  55. package/dist/src/parse.d.ts.map +1 -1
  56. package/dist/src/parse.js +590 -17
  57. package/dist/src/parse.js.map +1 -1
  58. package/dist/src/typecheck.d.ts +8 -0
  59. package/dist/src/typecheck.d.ts.map +1 -0
  60. package/dist/src/typecheck.js +2958 -0
  61. package/dist/src/typecheck.js.map +1 -0
  62. package/dist/src/version.d.ts +4 -15
  63. package/dist/src/version.d.ts.map +1 -1
  64. package/dist/src/version.js +4 -15
  65. package/dist/src/version.js.map +1 -1
  66. package/docs/README.md +23 -0
  67. package/docs/guide/01-first-program.md +24 -0
  68. package/docs/guide/02-money.md +25 -0
  69. package/docs/guide/03-instruments.md +22 -0
  70. package/docs/guide/04-lifecycles.md +25 -0
  71. package/docs/guide/05-fees-and-splits.md +45 -0
  72. package/docs/guide/06-schedules.md +22 -0
  73. package/docs/guide/07-composition.md +46 -0
  74. package/docs/guide/08-writing-a-module.md +26 -0
  75. package/docs/guide/09-cost.md +24 -0
  76. package/docs/guide/10-diagnostics.md +27 -0
  77. package/docs/llms-full.txt +1738 -0
  78. package/docs/llms.txt +45 -0
  79. package/docs/reference/cli.md +33 -0
  80. package/docs/reference/diagnostics.md +619 -0
  81. package/docs/reference/grammar.md +39 -0
  82. package/docs/reference/std/advance.md +35 -0
  83. package/docs/reference/std/cancellable_booking.md +35 -0
  84. package/docs/reference/std/captured_payment.md +43 -0
  85. package/docs/reference/std/conditional_disbursement.md +33 -0
  86. package/docs/reference/std/credit_facility.md +35 -0
  87. package/docs/reference/std/held_payment.md +64 -0
  88. package/docs/reference/std/instant_transfer.md +30 -0
  89. package/docs/reference/std/metered.md +27 -0
  90. package/docs/reference/std/pooled_split.md +26 -0
  91. package/docs/reference/std/premium_forward.md +39 -0
  92. package/docs/reference/std/reconciled_payout.md +33 -0
  93. package/docs/reference/std/recurring_collection.md +25 -0
  94. package/docs/reference/std/rotating_pool.md +42 -0
  95. package/docs/reference/std/scheduled.md +51 -0
  96. package/docs/reference/std/security_deposit.md +46 -0
  97. package/docs/reference/std/settlement_batch.md +42 -0
  98. package/docs/reference/std/swap.md +46 -0
  99. package/docs/reference/std/threshold_pool.md +47 -0
  100. package/docs/reference/std/weighted_distribution.md +39 -0
  101. package/docs/reference/types.md +20 -0
  102. package/docs/reference/udl-output.md +14 -0
  103. package/docs/sessions/2026-09-02-two-instruments.hsx +21 -0
  104. package/docs/sessions/2026-09-02-two-instruments.md +41 -0
  105. package/examples/01-first-program/README.md +45 -0
  106. package/examples/01-first-program/tip-jar.hsx +17 -0
  107. package/examples/02-imports-and-archetypes/README.md +99 -0
  108. package/examples/02-imports-and-archetypes/photo-booth.hsx +37 -0
  109. package/examples/03-diagnostics/README.md +68 -0
  110. package/examples/03-diagnostics/corner-shop-fixed.hsx +22 -0
  111. package/examples/03-diagnostics/corner-shop.hsx +19 -0
  112. package/examples/04-complete-product/README.md +87 -0
  113. package/examples/04-complete-product/study-hall.hsx +67 -0
  114. package/examples/05-watch-club/README.md +9 -0
  115. package/examples/05-watch-club/watch-club.hsx +124 -0
  116. package/examples/README.md +18 -0
  117. package/examples/advance/README.md +3 -0
  118. package/examples/advance/advance.hsx +13 -0
  119. package/examples/advance/advance.udl +339 -0
  120. package/examples/cancellable_booking/README.md +3 -0
  121. package/examples/cancellable_booking/cancellable_booking.hsx +14 -0
  122. package/examples/cancellable_booking/cancellable_booking.udl +391 -0
  123. package/examples/captured_payment/README.md +3 -0
  124. package/examples/captured_payment/captured_payment.hsx +21 -0
  125. package/examples/captured_payment/captured_payment.udl +677 -0
  126. package/examples/conditional_disbursement/README.md +3 -0
  127. package/examples/conditional_disbursement/conditional_disbursement.hsx +17 -0
  128. package/examples/conditional_disbursement/conditional_disbursement.udl +412 -0
  129. package/examples/cost-table.json +386 -0
  130. package/examples/credit_facility/README.md +3 -0
  131. package/examples/credit_facility/credit_facility.hsx +27 -0
  132. package/examples/credit_facility/credit_facility.udl +1373 -0
  133. package/examples/held_payment/README.md +3 -0
  134. package/examples/held_payment/held_payment.hsx +13 -0
  135. package/examples/held_payment/held_payment.udl +507 -0
  136. package/examples/instant_transfer/README.md +3 -0
  137. package/examples/instant_transfer/instant_transfer.hsx +16 -0
  138. package/examples/instant_transfer/instant_transfer.udl +364 -0
  139. package/examples/metered/README.md +3 -0
  140. package/examples/metered/metered.hsx +13 -0
  141. package/examples/metered/metered.udl +247 -0
  142. package/examples/pooled_split/README.md +3 -0
  143. package/examples/pooled_split/pooled_split.hsx +15 -0
  144. package/examples/pooled_split/pooled_split.udl +425 -0
  145. package/examples/premium_forward/README.md +3 -0
  146. package/examples/premium_forward/premium_forward.hsx +19 -0
  147. package/examples/premium_forward/premium_forward.udl +594 -0
  148. package/examples/reconciled_payout/README.md +3 -0
  149. package/examples/reconciled_payout/reconciled_payout.hsx +13 -0
  150. package/examples/reconciled_payout/reconciled_payout.udl +303 -0
  151. package/examples/recurring_collection/README.md +3 -0
  152. package/examples/recurring_collection/recurring_collection.hsx +21 -0
  153. package/examples/recurring_collection/recurring_collection.udl +1130 -0
  154. package/examples/rotating_pool/README.md +3 -0
  155. package/examples/rotating_pool/rotating_pool.hsx +18 -0
  156. package/examples/rotating_pool/rotating_pool.udl +4352 -0
  157. package/examples/scheduled/README.md +3 -0
  158. package/examples/scheduled/scheduled.hsx +12 -0
  159. package/examples/scheduled/scheduled.udl +335 -0
  160. package/examples/security_deposit/README.md +3 -0
  161. package/examples/security_deposit/security_deposit.hsx +21 -0
  162. package/examples/security_deposit/security_deposit.udl +293 -0
  163. package/examples/settlement_batch/README.md +3 -0
  164. package/examples/settlement_batch/settlement_batch.hsx +19 -0
  165. package/examples/settlement_batch/settlement_batch.udl +753 -0
  166. package/examples/swap/README.md +3 -0
  167. package/examples/swap/swap.hsx +19 -0
  168. package/examples/swap/swap.udl +876 -0
  169. package/examples/threshold_pool/README.md +3 -0
  170. package/examples/threshold_pool/threshold_pool.hsx +16 -0
  171. package/examples/threshold_pool/threshold_pool.udl +667 -0
  172. package/examples/weighted_distribution/README.md +3 -0
  173. package/examples/weighted_distribution/weighted_distribution.hsx +20 -0
  174. package/examples/weighted_distribution/weighted_distribution.udl +337 -0
  175. package/package.json +19 -6
  176. package/skills/hsx/SKILL.md +483 -0
  177. package/src/ast.ts +163 -9
  178. package/src/cli.ts +164 -12
  179. package/src/compile.ts +160 -20
  180. package/src/cost.ts +579 -0
  181. package/src/diagnostics.ts +442 -0
  182. package/src/emit.ts +447 -0
  183. package/src/entry-overrides.ts +263 -48
  184. package/src/format.ts +261 -0
  185. package/src/index.ts +32 -4
  186. package/src/ir.ts +99 -0
  187. package/src/lex.ts +59 -4
  188. package/src/limits.ts +2 -3
  189. package/src/modules.ts +444 -0
  190. package/src/parse.ts +655 -21
  191. package/src/typecheck.ts +3876 -0
  192. package/src/version.ts +4 -16
  193. package/std/SEMANTICS.md +130 -0
  194. package/std/settlements/advance.hsx +177 -0
  195. package/std/settlements/cancellable_booking.hsx +87 -0
  196. package/std/settlements/captured_payment.hsx +144 -0
  197. package/std/settlements/conditional_disbursement.hsx +185 -0
  198. package/std/settlements/credit_facility.hsx +167 -0
  199. package/std/settlements/held_payment.hsx +578 -0
  200. package/std/settlements/index.hsx +3 -0
  201. package/std/settlements/instant_transfer.hsx +190 -0
  202. package/std/settlements/metered.hsx +67 -0
  203. package/std/settlements/pooled_split.hsx +68 -0
  204. package/std/settlements/premium_forward.hsx +257 -0
  205. package/std/settlements/reconciled_payout.hsx +77 -0
  206. package/std/settlements/recurring_collection.hsx +27 -0
  207. package/std/settlements/rotating_pool.hsx +252 -0
  208. package/std/settlements/scheduled.hsx +641 -0
  209. package/std/settlements/security_deposit.hsx +166 -0
  210. package/std/settlements/settlement_batch.hsx +122 -0
  211. package/std/settlements/swap.hsx +1114 -0
  212. package/std/settlements/threshold_pool.hsx +221 -0
  213. package/std/settlements/weighted_distribution.hsx +141 -0
  214. package/dist/src/archetypes.d.ts +0 -17
  215. package/dist/src/archetypes.d.ts.map +0 -1
  216. package/dist/src/archetypes.js +0 -327
  217. package/dist/src/archetypes.js.map +0 -1
  218. package/dist/src/check.d.ts +0 -12
  219. package/dist/src/check.d.ts.map +0 -1
  220. package/dist/src/check.js +0 -1910
  221. package/dist/src/check.js.map +0 -1
  222. package/dist/src/lower.d.ts +0 -146
  223. package/dist/src/lower.d.ts.map +0 -1
  224. package/dist/src/lower.js +0 -4570
  225. package/dist/src/lower.js.map +0 -1
  226. package/dist/src/model.d.ts +0 -467
  227. package/dist/src/model.d.ts.map +0 -1
  228. package/dist/src/model.js +0 -15
  229. package/dist/src/model.js.map +0 -1
  230. package/spec/hsx-ir.schema.json +0 -920
  231. package/src/archetypes.ts +0 -340
  232. package/src/check.ts +0 -2938
  233. package/src/lower.ts +0 -5416
  234. package/src/model.ts +0 -519
@@ -0,0 +1,303 @@
1
+ {
2
+ "instruments": [
3
+ {
4
+ "actionOrder": [
5
+ "create",
6
+ "instruct",
7
+ "settle"
8
+ ],
9
+ "actions": {
10
+ "create": {
11
+ "agentDescription": "Open the payout row with the treasury and supplier accounts, the amount, the beneficiary reference, and the settle date. No money moves and no instruction goes out yet. Call instruct next.",
12
+ "moves": [],
13
+ "publicAction": "createSupplierPayout",
14
+ "steps": [],
15
+ "summary": "Create a supplier payout"
16
+ },
17
+ "instruct": {
18
+ "agentDescription": "Send the payout instruction and start the expectation clock. This commits the amount to the supplier and the payout is not reversible from here. The bank debit is matched later by settle, which runs on its own at the settle date.",
19
+ "effects": {
20
+ "moves": [
21
+ {
22
+ "signature": "moves.payout.external",
23
+ "source": "payout"
24
+ }
25
+ ]
26
+ },
27
+ "moves": [],
28
+ "payout": {
29
+ "amount": "fields.netPayable",
30
+ "beneficiaryField": "supplierBeneficiaryId",
31
+ "beneficiaryPartyField": "supplierAccountId",
32
+ "capture": "payoutId",
33
+ "currencyField": "currency",
34
+ "sourceAccountField": "treasuryAccountId",
35
+ "speed": "standard"
36
+ },
37
+ "publicAction": "instructSupplierPayout",
38
+ "steps": [],
39
+ "summary": "Instruct the payout to the supplier"
40
+ },
41
+ "settle": {
42
+ "due": {
43
+ "field": "settleBy"
44
+ },
45
+ "effects": {
46
+ "reads": [
47
+ {
48
+ "signature": "reads.reconcile",
49
+ "source": "reconcile[0]"
50
+ }
51
+ ],
52
+ "schedules": [
53
+ {
54
+ "signature": "schedules.due",
55
+ "source": "due"
56
+ }
57
+ ]
58
+ },
59
+ "moves": [],
60
+ "reconcile": [
61
+ {
62
+ "amount": "fields.netPayable",
63
+ "capture": "settlementEvidenceId",
64
+ "counterpartyRef": "payoutId",
65
+ "currencyField": "currency",
66
+ "direction": "debit",
67
+ "evidence": "statement_line",
68
+ "exception": {
69
+ "amountField": "unmatchedAmount",
70
+ "childInstrumentId": "supplier_payout_break",
71
+ "maxOpen": 1,
72
+ "reasonField": "breakReason",
73
+ "refField": "supplierPayoutId"
74
+ },
75
+ "match": {
76
+ "dial": "settlement_tolerance",
77
+ "law": "tolerance",
78
+ "minorUnits": 100
79
+ },
80
+ "within": {
81
+ "field": "settleBy"
82
+ }
83
+ }
84
+ ],
85
+ "steps": [],
86
+ "summary": "Match the bank's debit against what the instruction promised"
87
+ }
88
+ },
89
+ "agentDescription": "Reach for reconciled payout when a payment to the supplier is not finished until the bank confirms the debit. The instruction goes out, the expectation waits for a matching statement line, and anything still unmatched at the settle date becomes a break row instead of disappearing. Pick instant transfer when no bank confirmation is involved.",
90
+ "description": "A payout the instrument owns end to end: one instruction, one expectation about the debit it will produce, and one break when the debit never matches",
91
+ "dials": [
92
+ {
93
+ "key": "settlement_tolerance",
94
+ "kind": "reconcile_tolerance",
95
+ "maxMinorUnits": 500,
96
+ "summary": "Largest difference between the instructed amount and the settled debit that still counts as matched.",
97
+ "title": "Settlement tolerance"
98
+ }
99
+ ],
100
+ "fields": {
101
+ "currency": {
102
+ "description": "ISO 4217 currency code",
103
+ "maxLength": 3,
104
+ "minLength": 3,
105
+ "pattern": "^[A-Z]{3}$",
106
+ "type": "string"
107
+ },
108
+ "netPayable": {
109
+ "description": "Amount instructed to the supplier in minor units",
110
+ "pattern": "^[1-9][0-9]{0,17}$",
111
+ "type": "string"
112
+ },
113
+ "settleBy": {
114
+ "description": "Instant the expectation stops waiting and the unmatched amount becomes a break",
115
+ "format": "hyperscale-date-time",
116
+ "type": "string"
117
+ },
118
+ "supplierAccountId": {
119
+ "description": "The supplier account",
120
+ "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
121
+ "type": "string",
122
+ "x-hyperscale-reference-filter": {
123
+ "column": "role",
124
+ "values": [
125
+ "customer_balance"
126
+ ]
127
+ }
128
+ },
129
+ "supplierBeneficiaryId": {
130
+ "description": "Beneficiary ID for the payout instruction",
131
+ "pattern": "^ben_(sandbox|live)_[a-z0-9]{8,64}$",
132
+ "type": "string"
133
+ },
134
+ "treasuryAccountId": {
135
+ "description": "The treasury account the payout leaves",
136
+ "pattern": "^acct_(sandbox|live)_[a-z0-9]{8,64}$",
137
+ "type": "string",
138
+ "x-hyperscale-reference-filter": {
139
+ "column": "role",
140
+ "values": [
141
+ "customer_balance"
142
+ ]
143
+ }
144
+ }
145
+ },
146
+ "id": "supplier_payout",
147
+ "idPrefix": "sp",
148
+ "lifecycle": {
149
+ "initial": "created",
150
+ "states": [
151
+ "created",
152
+ "instructed",
153
+ "settled"
154
+ ],
155
+ "transitions": {
156
+ "instruct": {
157
+ "from": [
158
+ "created"
159
+ ],
160
+ "to": "instructed"
161
+ },
162
+ "settle": {
163
+ "from": [
164
+ "instructed"
165
+ ],
166
+ "to": "settled"
167
+ }
168
+ }
169
+ },
170
+ "parties": {
171
+ "beneficiary": "supplierAccountId",
172
+ "payer": "treasuryAccountId"
173
+ },
174
+ "required": [
175
+ "netPayable",
176
+ "supplierAccountId",
177
+ "supplierBeneficiaryId",
178
+ "currency",
179
+ "treasuryAccountId",
180
+ "settleBy"
181
+ ],
182
+ "summary": "Payout from treasury to supplier that is not done until the bank agrees",
183
+ "title": "Supplier payout"
184
+ },
185
+ {
186
+ "actionOrder": [
187
+ "create",
188
+ "carry"
189
+ ],
190
+ "actions": {
191
+ "carry": {
192
+ "agentDescription": "Hand the break to whoever owns resolving it. No money moves. The payout must still be instructed. This is the only exit from a raised break, so a break is never closed by dropping it.",
193
+ "effects": {
194
+ "reads": [
195
+ {
196
+ "signature": "reads.requires_refs",
197
+ "source": "requiresRefs"
198
+ }
199
+ ]
200
+ },
201
+ "moves": [],
202
+ "publicAction": "carrySupplierPayoutBreak",
203
+ "requiresRefs": [
204
+ {
205
+ "field": "supplierPayoutId",
206
+ "match": {
207
+ "fields.currency": "fields.currency"
208
+ },
209
+ "statuses": [
210
+ "instructed"
211
+ ]
212
+ }
213
+ ],
214
+ "steps": [],
215
+ "summary": "Carry the break to whoever owns it"
216
+ },
217
+ "create": {
218
+ "agentDescription": "Raise a break against an instructed payout, recording the unmatched amount and why the expectation went unmatched. No money moves. The payout must still be instructed, and only one open break exists per payout.",
219
+ "effects": {
220
+ "reads": [
221
+ {
222
+ "signature": "reads.requires_refs",
223
+ "source": "requiresRefs"
224
+ }
225
+ ]
226
+ },
227
+ "moves": [],
228
+ "publicAction": "createSupplierPayoutBreak",
229
+ "requiresRefs": [
230
+ {
231
+ "field": "supplierPayoutId",
232
+ "match": {
233
+ "fields.currency": "fields.currency"
234
+ },
235
+ "statuses": [
236
+ "instructed"
237
+ ]
238
+ }
239
+ ],
240
+ "steps": [],
241
+ "summary": "Raise a break against an instructed payout"
242
+ }
243
+ },
244
+ "agentDescription": "Reach for this child row when a supplier payout expectation reached its window with no matching bank debit. The break carries the unmatched amount and the reason so the difference is owned by someone rather than silently dropped.",
245
+ "description": "One break raised when a payout expectation reached its window with no matching debit; it is carried, never silently dropped",
246
+ "fields": {
247
+ "breakReason": {
248
+ "description": "Why the expectation went unmatched",
249
+ "maxLength": 180,
250
+ "minLength": 1,
251
+ "type": "string"
252
+ },
253
+ "currency": {
254
+ "description": "ISO 4217 currency code",
255
+ "maxLength": 3,
256
+ "minLength": 3,
257
+ "pattern": "^[A-Z]{3}$",
258
+ "type": "string"
259
+ },
260
+ "supplierPayoutId": {
261
+ "description": "Payout whose expectation broke",
262
+ "pattern": "^sp_(sandbox|live)_[a-z0-9]{8,64}$",
263
+ "type": "string"
264
+ },
265
+ "unmatchedAmount": {
266
+ "description": "Difference between the instructed amount and the evidence, in minor units",
267
+ "pattern": "^[1-9][0-9]{0,17}$",
268
+ "type": "string"
269
+ }
270
+ },
271
+ "id": "supplier_payout_break",
272
+ "idPrefix": "spbk",
273
+ "lifecycle": {
274
+ "initial": "created",
275
+ "states": [
276
+ "created",
277
+ "carried"
278
+ ],
279
+ "transitions": {
280
+ "carry": {
281
+ "from": [
282
+ "created"
283
+ ],
284
+ "to": "carried"
285
+ }
286
+ }
287
+ },
288
+ "required": [
289
+ "breakReason",
290
+ "currency",
291
+ "unmatchedAmount",
292
+ "supplierPayoutId"
293
+ ],
294
+ "summary": "Unmatched settlement expectation carried as its own row",
295
+ "title": "Supplier payout Break"
296
+ }
297
+ ],
298
+ "product": "reconciled_payout_example",
299
+ "subjects": [],
300
+ "title": "Reconciled payout example",
301
+ "udl": 1,
302
+ "version": 1
303
+ }
@@ -0,0 +1,3 @@
1
+ # recurring_collection
2
+
3
+ This example applies the `recurring_collection` standard-library module. Its sibling UDL file pins the canonical compiler output byte for byte. The company and parties are invented.
@@ -0,0 +1,21 @@
1
+ program recurring_collection_example "Recurring collection example"
2
+ import { recurring_collection, scheduled } from "std/settlements"
3
+ party debtor: person
4
+ party repayment_source: business
5
+ party recipient: business
6
+ settlement obligation = scheduled {
7
+ mode: obligation
8
+ payer: repayment_source
9
+ payee: recipient
10
+ debtor: debtor
11
+ amount: principal: money(SAR)
12
+ count: 2
13
+ every: P30D
14
+ first_due: firstDueAt
15
+ mandate: port mandate_evidence
16
+ }
17
+ settlement collection = recurring_collection {}
18
+ port mandate_evidence {
19
+ allowed: [repayment_source]
20
+ shape: { evidenceReference: text }
21
+ }