changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "flow": {
+ "description": "Trade flow type (Imports or Exports)",
+ "type": "string"
+ },
+ "reporter": {
+ "description": "Reporting country name",
+ "type": "string"
+ },
+ "top_partners": {
+ "description": "List of top trading partners ranked by trade value",
+ "items": {
+ "properties": {
+ "commodity": {
+ "description": "Commodity code or description",
+ "type": "string"
+ },
+ "partner": {
+ "description": "Partner country name",
+ "type": "string"
+ },
+ "partner_code": {
+ "description": "ISO numeric country code",
+ "type": "number"
+ },
+ "rank": {
+ "description": "Partner rank by trade value",
+ "type": "number"
+ },
+ "trade_value_usd": {
+ "description": "Trade value with this partner in USD",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_partners": {
+ "description": "Total number of top partners returned",
+ "type": "number"
+ },
+ "year": {
+ "description": "Trade year queried",
+ "type": "string"
+ }
+ },
+ "required": [
+ "reporter",
+ "year",
+ "flow",
+ "total_partners",
+ "top_partners"
+ ],
+ "type": "object"
+}