Skip to content
Closed
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
825 changes: 420 additions & 405 deletions schemas/cache/.hashes.json

Large diffs are not rendered by default.

70 changes: 0 additions & 70 deletions schemas/cache/a2ui/bound-value.json

This file was deleted.

42 changes: 22 additions & 20 deletions schemas/cache/a2ui/component.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "/schemas/3.0.0-rc.2/a2ui/component.json",
"title": "A2UI Component",
"additionalProperties": true,
"description": "A component in an A2UI surface",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for this component within the surface"
},
"parentId": {
"type": "string",
"description": "ID of the parent component (null for root)"
},
"component": {
"type": "object",
"additionalProperties": {
"description": "Component properties",
"type": "object"
},
"description": "Component definition (keyed by component type)",
"minProperties": 1,
"maxProperties": 1,
"additionalProperties": {
"type": "object",
"description": "Component properties"
}
"minProperties": 1,
"type": "object"
},
"id": {
"description": "Unique identifier for this component within the surface",
"type": "string"
},
"parentId": {
"description": "ID of the parent component (null for root)",
"type": "string"
}
},
"required": ["id", "component"],
"additionalProperties": true
}
"required": [
"id",
"component"
],
"title": "A2UI Component",
"type": "object"
}
Loading
Loading