| 1 | [ |
| 2 | "autonomous agent", |
| 3 | { |
| 4 | "messages": [ |
| 5 | { |
| 6 | "if": "{trigger.data.d}", |
| 7 | "app": "data", |
| 8 | "payload": "{trigger.data.d}" |
| 9 | }, |
| 10 | { |
| 11 | "if": "{trigger.data.sub}", |
| 12 | "app": "data", |
| 13 | "payload": { |
| 14 | "xx": 66.3, |
| 15 | "sub": "{trigger.data.sub}" |
| 16 | } |
| 17 | }, |
| 18 | { |
| 19 | "if": "{trigger.data.output}", |
| 20 | "app": "payment", |
| 21 | "payload": { |
| 22 | "asset": "base", |
| 23 | "outputs": [ |
| 24 | "{trigger.data.output}" |
| 25 | ] |
| 26 | } |
| 27 | }, |
| 28 | { |
| 29 | "if": "{trigger.data.payment}", |
| 30 | "app": "payment", |
| 31 | "payload": "{trigger.data.payment}" |
| 32 | } |
| 33 | ] |
| 34 | } |
| 35 | ] |