addedInput schema / $schema
Added value: +"http://json-schema.org/draft-07/schema#"
addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / address1
Added value: +{
+ "description": "First line of the address",
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / address2
Added value: +{
+ "description": "Second line of the address",
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / chargeSalesTax
Added value: +{
+ "description": "Whether to charge sales tax to this contact (default: Auto)",
+ "enum": [
+ "Auto",
+ "Always",
+ "Never"
+ ],
+ "type": "string"
+}
addedInput schema / properties / contactNameOnInvoices
Added value: +{
+ "description": "Show the person's name rather than the organisation on invoices",
+ "type": "boolean"
+}
addedInput schema / properties / country
Added value: +{
+ "description": "Country (e.g. 'United Kingdom')",
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / email
Added value: +{
+ "description": "Contact email address",
+ "format": "email",
+ "type": "string"
+}
addedInput schema / properties / firstName
Added value: +{
+ "description": "Contact first name",
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / lastName
Added value: +{
+ "description": "Contact last name",
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / organisationName
Added value: +{
+ "description": "Company name (e.g. 'Example Client Ltd')",
+ "maxLength": 200,
+ "type": "string"
+}
addedInput schema / properties / phoneNumber
Added value: +{
+ "description": "Contact phone number",
+ "maxLength": 50,
+ "type": "string"
+}
addedInput schema / properties / postcode
Added value: +{
+ "description": "Postcode or ZIP",
+ "maxLength": 20,
+ "type": "string"
+}
addedInput schema / properties / region
Added value: +{
+ "description": "County, region or state",
+ "maxLength": 100,
+ "type": "string"
+}
addedInput schema / properties / town
Added value: +{
+ "description": "Town or city",
+ "maxLength": 100,
+ "type": "string"
+}