changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "commodity": {
+ "description": "Commodity name provided in the request",
+ "type": "string"
+ },
+ "commodity_code": {
+ "description": "FAS commodity code used for the query",
+ "type": "string"
+ },
+ "count": {
+ "description": "Number of export records returned",
+ "type": "integer"
+ },
+ "data": {
+ "description": "Export records (up to 100)",
+ "items": {
+ "properties": {
+ "month": {
+ "description": "Export month",
+ "type": [
+ "integer",
+ "null"
+ ]
+ },
+ "partner": {
+ "description": "Destination country or partner name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "partner_code": {
+ "description": "Partner country code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "quantity": {
+ "description": "Export quantity",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "unit": {
+ "description": "Unit of measurement",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "value": {
+ "description": "Export value",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Export year",
+ "type": [
+ "integer",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "direction": {
+ "description": "Trade direction",
+ "enum": [
+ "exports"
+ ],
+ "type": "string"
+ },
+ "truncated": {
+ "description": "Whether more than 100 records exist",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "commodity",
+ "commodity_code",
+ "direction",
+ "count",
+ "data",
+ "truncated"
+ ],
+ "type": "object"
+}