@shipengine/connect
Version:
The official developer tooling for building ShipEngine connect apps
26 lines (25 loc) • 570 B
JavaScript
module.exports.ConnectionFormSchema = {
JsonSchema: {
"type": "object",
"required": [
"username",
"password"
],
"properties": {
"username": {
"type": "string",
"title": "User Name:"
},
"password": {
"type": "string",
"title": "Password:"
}
}
},
UiSchema: {
"password": {
"ui:widget": "password",
"ui:help": "Hint: Make it strong!"
}
}
};