UNPKG

@shipengine/connect

Version:

The official developer tooling for building ShipEngine connect apps

19 lines 407 B
module.exports.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', } } };