ui-form-generator
Generate dynamic forms for SAP entity operations with validation and SAP Fiori styling to create, edit, or view data through conversational interfaces.
Instructions
Creates dynamic forms for SAP entity operations with validation and SAP Fiori styling
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entityType | Yes | SAP entity type for the form | |
fields | No | Custom form fields configuration | |
formType | Yes | Type of form to generate |
Input Schema (JSON Schema)
{
"properties": {
"entityType": {
"description": "SAP entity type for the form",
"type": "string"
},
"fields": {
"description": "Custom form fields configuration",
"items": {
"additionalProperties": false,
"properties": {
"label": {
"type": "string"
},
"name": {
"type": "string"
},
"required": {
"type": "boolean"
},
"type": {
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
},
"type": "array"
},
"formType": {
"description": "Type of form to generate",
"enum": [
"create",
"edit",
"view"
],
"type": "string"
}
},
"required": [
"entityType",
"formType"
],
"type": "object"
}