changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "order": {
+ "description": "Order details",
+ "properties": {
+ "created_at": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "currency": {
+ "description": "Currency code",
+ "type": "string"
+ },
+ "customer": {
+ "description": "Customer details",
+ "type": "object"
+ },
+ "email": {
+ "description": "Customer email",
+ "type": "string"
+ },
+ "financial_status": {
+ "description": "Financial status",
+ "type": "string"
+ },
+ "fulfillment_status": {
+ "description": "Fulfillment status",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Order ID",
+ "type": "number"
+ },
+ "line_items": {
+ "description": "Order line items",
+ "type": "array"
+ },
+ "order_number": {
+ "description": "Order number",
+ "type": "number"
+ },
+ "total_price": {
+ "description": "Total order price",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}