Skip to content
Open
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ ucp-schema resolve checkout.json --request --op create --bundle --pretty

# Bundle a 3P extension with absolute URL refs (maps URLs to local copies)
ucp-schema resolve my_extension.json --response --op read --bundle \
--schema-remote-base "https://ucp.dev/schemas" \
--schema-remote-base "https://ucp.dev/2026-04-08/schemas" \
--schema-local-base ./local-ucp-schemas

# Bundle a 3P extension with absolute URL refs (fetches from network)
Expand Down Expand Up @@ -377,11 +377,11 @@ UCP payloads are self-describing — they embed `ucp.capabilities` metadata decl
"capabilities": {
"dev.ucp.shopping.checkout": [{
"version": "2026-01-11",
"schema": "https://ucp.dev/schemas/shopping/checkout.json"
"schema": "https://ucp.dev/2026-04-08/schemas/shopping/checkout.json"
}],
"dev.ucp.shopping.discount": [{
"version": "2026-01-11",
"schema": "https://ucp.dev/schemas/shopping/discount.json",
"schema": "https://ucp.dev/2026-04-08/schemas/shopping/discount.json",
"extends": "dev.ucp.shopping.checkout"
}]
}
Expand All @@ -407,7 +407,7 @@ Extension schemas define their additions in `$defs` keyed by the root capability

```json
{
"$id": "https://ucp.dev/schemas/shopping/discount.json",
"$id": "https://ucp.dev/2026-04-08/schemas/shopping/discount.json",
"name": "dev.ucp.shopping.discount",
"$defs": {
"dev.ucp.shopping.checkout": {
Expand Down Expand Up @@ -485,7 +485,7 @@ ucp-schema validate envelope.json --schema transports/jsonrpc.json --op read --d

```json
{
"$id": "https://ucp.dev/schemas/shopping/fulfillment.json",
"$id": "https://ucp.dev/2026-04-08/schemas/shopping/fulfillment.json",
"name": "dev.ucp.shopping.fulfillment",
"$defs": {
"dev.ucp.shopping.catalog.search": {
Expand Down
Loading