diff --git a/docs/specification/split-payments.md b/docs/specification/split-payments.md index 86e948139..a0a501ce5 100644 --- a/docs/specification/split-payments.md +++ b/docs/specification/split-payments.md @@ -107,13 +107,18 @@ if any valid assignment exists, the combination matches. A business that supports (a) a card with up to 2 redeemables, (b) up to 5 gift cards alone, and (c) two credit cards: - + ```json { - "capabilities": [{ + "capabilities": { "dev.ucp.shopping.split_payments": [ { - "version": "2026-01-23", + "version": "{{ ucp_version }}", + "spec": "https://ucp.dev/{{ ucp_version }}/specification/split-payments", + "schema": "https://ucp.dev/{{ ucp_version }}/schemas/shopping/split_payments.json", + "extends": [ + "dev.ucp.shopping.checkout" + ], "config": { "allowed_combinations": [ [ @@ -130,7 +135,7 @@ gift cards alone, and (c) two credit cards: } } ] - }] + } } ```