changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "company_id": {
+ "description": "Company UUID the profile belonged to (after confirm:true).",
+ "type": "string"
+ },
+ "deleted": {
+ "description": "True once the profile is deleted (after confirm:true).",
+ "type": "boolean"
+ },
+ "note": {
+ "description": "Next-step guidance, present on preview responses.",
+ "type": "string"
+ },
+ "preview": {
+ "description": "True when the call was a preview (confirm omitted or false): nothing was changed.",
+ "type": "boolean"
+ },
+ "would_delete": {
+ "additionalProperties": false,
+ "description": "Profile that would be deleted (preview only).",
+ "properties": {
+ "company": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Company name, null when not resolvable."
+ },
+ "company_id": {
+ "description": "Company UUID.",
+ "type": "string"
+ },
+ "delivery_channel": {
+ "description": "Delivery channel: Email, e-Invoice or Manual.",
+ "type": "string"
+ },
+ "id": {
+ "description": "Profile UUID.",
+ "type": "string"
+ },
+ "invoice_prefix": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Custom invoice number prefix, null for the tenant default."
+ },
+ "payment_terms": {
+ "description": "Payment terms: Net-15, Net-30, Net-60, Net-90 or Due on Receipt.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "company_id",
+ "company",
+ "payment_terms",
+ "delivery_channel",
+ "invoice_prefix"
+ ],
+ "type": "object"
+ }
+ },
+ "type": "object"
+}