changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of records returned",
+ "type": "integer"
+ },
+ "data": {
+ "description": "Array of up to 200 agricultural records",
+ "items": {
+ "properties": {
+ "agg_level": {
+ "description": "Aggregation level (NATIONAL, STATE, COUNTY)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "commodity": {
+ "description": "Commodity name (e.g., CORN, SOYBEANS)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "county": {
+ "description": "County name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Short description of the statistic",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "frequency": {
+ "description": "Frequency (ANNUAL, MONTHLY, WEEKLY)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "period": {
+ "description": "Reference period description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "stat_category": {
+ "description": "Statistical category (e.g., YIELD, PRODUCTION)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "state": {
+ "description": "State name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Numeric or categorical value",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Year of the record",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "truncated": {
+ "description": "True if results exceed 200 records and were truncated",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "count",
+ "data",
+ "truncated"
+ ],
+ "type": "object"
+}