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