changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of trade records returned",
+ "type": "number"
+ },
+ "records": {
+ "description": "Array of bilateral trade records",
+ "items": {
+ "properties": {
+ "commodity": {
+ "description": "Commodity description",
+ "type": "string"
+ },
+ "commodity_code": {
+ "description": "HS commodity code",
+ "type": "string"
+ },
+ "flow": {
+ "description": "Trade flow type (Imports, Exports, Re-exports, Re-imports)",
+ "type": "string"
+ },
+ "net_weight_kg": {
+ "description": "Net weight in kilograms",
+ "type": "number"
+ },
+ "partner": {
+ "description": "Partner country name",
+ "type": "string"
+ },
+ "quantity": {
+ "description": "Quantity traded",
+ "type": "number"
+ },
+ "quantity_unit": {
+ "description": "Unit of quantity measurement",
+ "type": "string"
+ },
+ "reporter": {
+ "description": "Reporting country name",
+ "type": "string"
+ },
+ "trade_value_usd": {
+ "description": "Trade value in USD",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "year": {
+ "description": "Trade year queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "count",
+ "year",
+ "records"
+ ],
+ "type": "object"
+}