UNPKG

express-cart-tea

Version:

A fully functioning Node.js shopping cart with Stripe, PayPal and Authorize.net payments.

57 lines 1.24 kB
{ "$id": "editCustomer", "type": "object", "properties": { "company": { "type": "string" }, "email": { "type": "string", "format": "emailAddress" }, "firstName": { "type": "string", "isNotEmpty": true }, "lastName": { "type": "string", "isNotEmpty": true }, "address1": { "type": "string", "isNotEmpty": true }, "address2": { "type": "string" }, "country": { "type": "string", "isNotEmpty": true }, "state": { "type": "string", "isNotEmpty": true }, "postcode": { "type": "string", "isNotEmpty": true }, "phone": { "type": "string", "isNotEmpty": true }, "password": { "type": "string" } }, "required": [ "email", "firstName", "lastName", "address1", "country", "state", "postcode", "phone" ] }