export const registrationForm = { JsonSchema: { title: 'Connect Example Connection', description: 'Sample Form Description', type: 'object', properties: { username: { type: 'string', title: 'Username', } }, required: ['username'] }, UiSchema: { username: { 'ui:help': 'Your username', } } };