UNPKG

express-cart-tea

Version:

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

51 lines 1.11 kB
{ "$id": "saveCustomer", "type": "object", "properties": { "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 } }, "required": [ "email", "firstName", "lastName", "address1", "country", "state", "postcode", "phone" ] }