changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of records returned",
+ "type": "number"
+ },
+ "description": {
+ "description": "Description of the data",
+ "type": "string"
+ },
+ "records": {
+ "description": "Monthly customs revenue records",
+ "items": {
+ "properties": {
+ "classification": {
+ "description": "Classification description or code",
+ "type": "string"
+ },
+ "current_month_gross": {
+ "description": "Current month gross receipts",
+ "type": "number"
+ },
+ "current_month_net": {
+ "description": "Current month net receipts",
+ "type": "number"
+ },
+ "current_month_refund": {
+ "description": "Current month refunds",
+ "type": "number"
+ },
+ "fiscal_year_gross": {
+ "description": "Fiscal year gross receipts",
+ "type": "number"
+ },
+ "fiscal_year_net": {
+ "description": "Fiscal year net receipts",
+ "type": "number"
+ },
+ "fiscal_year_refund": {
+ "description": "Fiscal year refunds",
+ "type": "number"
+ },
+ "record_date": {
+ "description": "Date of the record",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_available": {
+ "description": "Total available records in the API",
+ "type": "number"
+ }
+ },
+ "required": [
+ "description",
+ "count",
+ "total_available",
+ "records"
+ ],
+ "type": "object"
+}