changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "description": "Deleted company UUID (after confirm:true).",
+ "type": "string"
+ },
+ "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": "Company that would be deleted (preview only).",
+ "properties": {
+ "email": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Billing email."
+ },
+ "id": {
+ "description": "Company UUID.",
+ "type": "string"
+ },
+ "name": {
+ "description": "Display name.",
+ "type": "string"
+ },
+ "tax_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "VAT number."
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "email",
+ "tax_id"
+ ],
+ "type": "object"
+ }
+ },
+ "type": "object"
+}