changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "analysis": {
+ "description": "Analysis type identifier",
+ "type": "string"
+ },
+ "dollar_index": {
+ "description": "Trade-weighted dollar index from FRED if key provided",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "exchange_rates": {
+ "description": "Exchange rates from Treasury",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "exports": {
+ "description": "Bilateral export data from Comtrade",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "imports": {
+ "description": "Bilateral import data from Comtrade",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "partner_code": {
+ "description": "Partner country code",
+ "type": "string"
+ },
+ "reporter_code": {
+ "description": "Reporting country code",
+ "type": "string"
+ },
+ "top_commodities_imported": {
+ "description": "Top 10 imported commodities",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "us_trade_balance": {
+ "description": "US trade balance if reporter is US, null otherwise",
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "year": {
+ "description": "Trade year analyzed",
+ "type": "string"
+ }
+ },
+ "required": [
+ "analysis",
+ "reporter_code",
+ "partner_code",
+ "year",
+ "imports",
+ "exports",
+ "top_commodities_imported",
+ "exchange_rates",
+ "us_trade_balance",
+ "dollar_index"
+ ],
+ "type": "object"
+}