changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "created_at": {
+ "description": "Creation timestamp (ISO 8601).",
+ "type": "string"
+ },
+ "description": {
+ "description": "Line text.",
+ "type": "string"
+ },
+ "display_order": {
+ "description": "0-based position on the document.",
+ "type": "number"
+ },
+ "id": {
+ "description": "Line item UUID.",
+ "type": "string"
+ },
+ "invoice_id": {
+ "description": "Parent invoice UUID.",
+ "type": "string"
+ },
+ "line_total": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Line total incl. VAT, null for non-item lines."
+ },
+ "line_type": {
+ "description": "Line kind: item, section or description.",
+ "type": "string"
+ },
+ "product_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Linked product UUID, if any."
+ },
+ "quantity": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Quantity, null for section/description lines."
+ },
+ "tax_rate": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "VAT rate in percent, null for non-item lines."
+ },
+ "tax_rate_key": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "VAT rate key (e.g. standard, reduced), null for non-item lines."
+ },
+ "unit_price": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Unit price excl. VAT, null for non-item lines."
+ },
+ "updated_at": {
+ "description": "Last update timestamp (ISO 8601).",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "invoice_id",
+ "line_type",
+ "description",
+ "quantity",
+ "unit_price",
+ "tax_rate",
+ "tax_rate_key",
+ "line_total",
+ "display_order",
+ "product_id",
+ "created_at",
+ "updated_at"
+ ],
+ "type": "object"
+}