Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.
Merged
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
63 changes: 63 additions & 0 deletions schemas/ui/v1.0/ui.schema
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,64 @@
"type": "string"
}
},
"fieldsets": {
"title": "Field Sets",
"description": "An array of field sets.",
"type": "array",
"items": {
"title": "Field set",
"description": "Groups fields into collapsible sections in the UI.",
"type": "object",
"properties": {
"title": {
"title": "Title",
"description": "Field set title.",
"type": "string"
},
"fields": {
"title": "Fields",
"description": "Array of property names.",
"type": "array",
"items": {
"oneOf": [
{
"type": "string"
},
{
"properties": {
"title": {
"title": "Title",
"description": "Field set title.",
"type": "string"
},
"fields": {
"title": "Fields",
"description": "Array of property names.",
"type": "array",
"items": {
"type": "string"
}
},
"defaultExpanded": {
"title": "Default expanded",
"description": "Default expanded state for the field set.",
"type": "boolean",
"default": false
}
}
}
]
}
},
"defaultExpanded": {
"title": "Default expanded",
"description": "Default expanded state for the field set.",
"type": "boolean",
"default": false
}
}
}
},
"intellisenseScopes": {
"title": "Intellisense scopes",
"description": "An array of valid scopes to help Intellisense return the correct type of results.",
Expand Down Expand Up @@ -80,6 +138,11 @@
},
"examples": [["*"]]
},
"pivotFieldsets": {
"title": "Pivot Field Sets",
"description": "If 'pivotFieldsets' is set to true, the field sets render in a tabbed view.",
"type": "boolean"
},
"placeholder": {
"title": "Placeholder",
"description": "Placeholder override. Default is `examples` property in the schema.",
Expand Down