addedInput schema / properties / city / description
Added value: +"City."
changedInput schema / properties / country / description
Previous value: -"ISO country, e.g. FR."New value: +"ISO 3166-1 alpha-2 country code, e.g. FR."
addedInput schema / properties / email / description
Added value: +"Billing email address."
addedInput schema / properties / name / description
Added value: +"Company display name."
addedInput schema / properties / phone / description
Added value: +"Phone number, any format."
addedInput schema / properties / postal_code / description
Added value: +"Postal code."
addedInput schema / properties / street_address / description
Added value: +"Street address (number and street)."
changedInput schema / properties / tax_id / description
Previous value: -"VAT number."New value: +"VAT number, e.g. FR12345678901."
addedInput schema / properties / website / description
Added value: +"Website URL, including the scheme (https://)."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "email": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Billing email."
+ },
+ "id": {
+ "description": "Company UUID.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Display name.",
+ "type": "string"
+ },
+ "siren": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "French SIREN (9 digits)."
+ },
+ "tax_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "VAT number."
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "email",
+ "tax_id",
+ "siren"
+ ],
+ "type": "object"
+}