changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "flow": {
+ "description": "Trade flow type (Imports or Exports)",
+ "type": "string"
+ },
+ "partner": {
+ "description": "Partner country name",
+ "type": "string"
+ },
+ "reporter": {
+ "description": "Reporting country name",
+ "type": "string"
+ },
+ "top_commodities": {
+ "description": "List of top traded commodities ranked by value",
+ "items": {
+ "properties": {
+ "commodity": {
+ "description": "Commodity description",
+ "type": "string"
+ },
+ "hs_code": {
+ "description": "HS commodity code",
+ "type": "string"
+ },
+ "net_weight_kg": {
+ "description": "Net weight in kilograms",
+ "type": "number"
+ },
+ "rank": {
+ "description": "Commodity rank by trade value",
+ "type": "number"
+ },
+ "trade_value_usd": {
+ "description": "Trade value for this commodity in USD",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_commodities": {
+ "description": "Total number of top commodities returned",
+ "type": "number"
+ },
+ "year": {
+ "description": "Trade year queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "reporter",
+ "partner",
+ "year",
+ "flow",
+ "total_commodities",
+ "top_commodities"
+ ],
+ "type": "object"
+}