Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "document1": {
- "form1": {
- "formData": {
- "_META": "#formData holds field values",
- "firstName": "Bob",
- "lastName": "Bobbinson",
- "age": "28",
- },
- "dataSpec": {
- "_META": "#dataSpec defines field types and validation",
- "firstName": {
- "type": "string"
- },
- "lastName": {
- "type": "string"
- },
- "age": {
- "type": "integer",
- "minimum": 18,
- "maximum": 65
- },
- "email": {
- "type": "string",
- "format": "email"
- }
- },
- "chatUISpec": {
- "_META": "#chatUISpec is for the conversational UI: associates fields to widgets, can add outputOnly widgets for extra output (text, images, videos)",
- "hello": {
- "widgetId": "textField",
- "widgetParams": {
- "readOnly": true,
- "value": "Hi!"
- }
- },
- "firstName": {
- "widgetId": "textField"
- },
- "lastName": {
- "widgetId": "textField"
- },
- "age": {
- "widgetId": "numberSlider"
- },
- "email": {
- "widgetId": "textField"
- }
- },
- "formUISpec": {
- "_META": "#same as chatUISpec"
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment