{ "name": "Client", "base": "PersistedModel", "validateUpsert": true, "properties": { "id": { "type": "Number", "id": true, "description": "Identifier" }, "name": { "type": "string", "required": true }, "fi": { "type": "string", "description": "Fiscal indetifier" }, "socialName": { "type": "string" }, "registerDate": { "type": "string" }, "contact": { "type": "string" }, "street": { "type": "string" }, "consignee": { "type": "string" }, "city": { "type": "string" }, "postcode": { "type": "string" }, "email": { "type": "string" }, "phone": { "type": "string" }, "mobile": { "type": "string" }, "fax": { "type": "string" }, "active": { "type": "boolean" }, "credit": { "type": "Number" }, "cyc": { "type": "Number" }, "iban": { "type": "string" }, "dueDay": { "type": "Number" }, "gestdoc": { "type": "Number" }, "surcharge": { "type": "boolean", "description": "The client has equivalence surcharge" }, "hasToInvoice": { "type": "boolean", "description": "Global invoicing enabled for the client" }, "invoiceByEmail": { "type": "boolean", "description": "Send invoices by email" } }, "validations": [], "relations": { "account": { "type": "hasOne", "model": "Account", "foreignKey": "id" }, "addresses": { "type": "hasMany", "model": "Address", "foreignKey": "client" } }, "scopes": { "test": { "where": {"name": "Verdnatura"} } }, "acls": [], "methods": {} }