Skip to content

Commit cd16e0d

Browse files
docs: Fix discrepancies between v0.8 spec/docs and schemas (#556)
1 parent 9e18e6d commit cd16e0d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/reference/components.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Display icons using Material Icons or custom icon sets.
9191
"id": "check-icon",
9292
"component": {
9393
"Icon": {
94-
"name": {"literalString": "check_circle"}
94+
"name": {"literalString": "check"}
9595
}
9696
}
9797
}
@@ -169,7 +169,7 @@ Boolean toggle.
169169
{
170170
"id": "terms-checkbox",
171171
"component": {
172-
"Checkbox": {
172+
"CheckBox": {
173173
"label": {"literalString": "I agree to the terms"},
174174
"value": {"path": "/form/agreedToTerms"}
175175
}

specification/v0_8/docs/custom_catalog_changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Your responsibilities are to accurately declare your capabilities and render sur
4545

4646
1. **Declare capabilities on every request**: For every A2A message your application sends, your library must inject the `a2uiClientCapabilities` object into the top-level `metadata` field.
4747

48-
2. **Populate `supportedCatalogIds`**: In the capabilities object, populate this array with the string identifiers of all pre-compiled catalogs your renderer supports. If your renderer supports the standard catalog for v0.8, you **should** include its ID: `a2ui.org:standard_catalog_0_8_0`.
48+
2. **Populate `supportedCatalogIds`**: In the capabilities object, populate this array with the string identifiers of all pre-compiled catalogs your renderer supports. If your renderer supports the standard catalog for v0.8, you **should** include its ID: `https://github.com/google/A2UI/blob/main/specification/v0_8/json/standard_catalog_definition.json`.
4949

5050
3. **Provide `inlineCatalogs` (optional)**: If your renderer supports dynamically generating or defining catalogs at runtime, include their full, valid Catalog Definition Documents in the `inlineCatalogs` array.
5151

specification/v0_8/json/a2ui_client_capabilities_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"properties": {
77
"supportedCatalogIds": {
88
"type": "array",
9-
"description": "The URI of each of the catalogs that is supported by the client. The standard catalog for v0.8 is 'a2ui.org:standard_catalog_0_8_0'.",
9+
"description": "The URI of each of the catalogs that is supported by the client. The standard catalog for v0.8 is 'https://github.com/google/A2UI/blob/main/specification/v0_8/json/standard_catalog_definition.json'.",
1010
"items": {
1111
"type": "string"
1212
}

specification/v0_8/json/server_to_client.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"catalogId": {
1717
"type": "string",
18-
"description": "The identifier of the component catalog to use for this surface. If omitted, the client MUST default to the standard catalog for this A2UI version (a2ui.org:standard_catalog_0_8_0)."
18+
"description": "The identifier of the component catalog to use for this surface. If omitted, the client MUST default to the standard catalog for this A2UI version (https://github.com/google/A2UI/blob/main/specification/v0_8/json/standard_catalog_definition.json)."
1919
},
2020
"root": {
2121
"type": "string",

0 commit comments

Comments
 (0)