@shipengine/connect
Version:
The official developer tooling for building ShipEngine connect apps
19 lines • 439 B
text/typescript
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',
}
}
};