changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "filters": {
+ "properties": {
+ "company": {
+ "description": "Company filter applied",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date_range": {
+ "properties": {
+ "end": {
+ "description": "End date of range",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "start": {
+ "description": "Start date of range",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "products": {
+ "description": "Complaint counts by product category",
+ "items": {
+ "properties": {
+ "complaint_count": {
+ "description": "Number of complaints",
+ "type": "number"
+ },
+ "product": {
+ "description": "Product category name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "product",
+ "complaint_count"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_complaints": {
+ "description": "Total complaints in period",
+ "type": "number"
+ }
+ },
+ "required": [
+ "filters",
+ "total_complaints",
+ "products"
+ ],
+ "type": "object"
+}