Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/specification/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3580,11 +3580,11 @@ Version unsupported error — no resource is created:
<!-- ucp:example schema=common/types/error_response op=read -->
```json
{
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [{
"type": "error",
"code": "version_unsupported",
"content": "Version 2026-01-12 is not supported. This business implements version 2026-01-11.",
"content": "Version 2026-01-12 is not supported. This business implements version {{ ucp_version }}.",
"severity": "unrecoverable"
}],
"continue_url": "https://merchant.com/"
Expand Down
2 changes: 1 addition & 1 deletion docs/specification/payment/split-payments.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ gift cards alone, and (c) two credit cards:
"capabilities": [{
"dev.ucp.shopping.split_payments": [
{
"version": "2026-01-23",
"version": "{{ ucp_version }}",
"config": {
"allowed_combinations": [
[
Expand Down
2 changes: 1 addition & 1 deletion docs/specification/shopping/checkout/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ items are unavailable:
<!-- ucp:example schema=common/types/error_response op=read -->
```json
{
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [
{
"type": "error",
Expand Down
4 changes: 2 additions & 2 deletions docs/specification/shopping/checkout/mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ Maps to the [Create Checkout](index.md#create-checkout) operation.
"id": 1,
"result": {
"structuredContent": {
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [
{
"type": "error",
Expand Down Expand Up @@ -713,7 +713,7 @@ JSON-RPC `result` with `structuredContent` containing the UCP envelope and `mess
"id": 1,
"result": {
"structuredContent": {
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [
{
"type": "error",
Expand Down
4 changes: 2 additions & 2 deletions docs/specification/shopping/checkout/rest.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ All REST endpoints **MUST** be served over HTTPS with minimum TLS version
Content-Type: application/json

{
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [
{
"type": "error",
Expand Down Expand Up @@ -1394,7 +1394,7 @@ HTTP 200 and the UCP envelope containing `messages`
<!-- ucp:example schema=common/types/error_response op=read -->
```json
{
"ucp": { "version": "2026-01-11", "status": "error" },
"ucp": { "version": "{{ ucp_version }}", "status": "error" },
"messages": [
{
"type": "error",
Expand Down
Loading