changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "customers": {
+ "description": "List of customers",
+ "items": {
+ "properties": {
+ "created_at": {
+ "description": "Creation timestamp",
+ "type": "string"
+ },
+ "email": {
+ "description": "Customer email",
+ "type": "string"
+ },
+ "first_name": {
+ "description": "Customer first name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Customer ID",
+ "type": "number"
+ },
+ "last_name": {
+ "description": "Customer last name",
+ "type": "string"
+ },
+ "orders_count": {
+ "description": "Total orders placed",
+ "type": "number"
+ },
+ "state": {
+ "description": "Customer state",
+ "type": "string"
+ },
+ "total_spent": {
+ "description": "Total amount spent",
+ "type": "string"
+ },
+ "updated_at": {
+ "description": "Last update timestamp",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}