changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "billing_email": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Email printed on documents."
+ },
+ "default_payment_terms": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Default payment terms for new documents."
+ },
+ "default_vat_rate_key": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Default VAT rate key applied to new lines."
+ },
+ "display_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Tenant display name."
+ },
+ "legal_form": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Legal form (e.g. SAS, SARL, EI)."
+ },
+ "legal_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Registered legal name of the tenant."
+ },
+ "preferred_language": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Caller's UI language (ISO 639-1)."
+ },
+ "tax_country": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Fiscal country, ISO 3166-1 alpha-2."
+ },
+ "tax_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Tenant VAT number."
+ },
+ "tax_regime": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "VAT regime: normal or franchise_en_base."
+ }
+ },
+ "required": [
+ "legal_name",
+ "display_name",
+ "legal_form",
+ "tax_country",
+ "tax_id",
+ "tax_regime",
+ "default_vat_rate_key",
+ "default_payment_terms",
+ "billing_email",
+ "preferred_language"
+ ],
+ "type": "object"
+}