changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "amount": {
+ "description": "Original amount in source currency",
+ "type": "number"
+ },
+ "converted": {
+ "description": "Converted amount in target currency",
+ "type": "number"
+ },
+ "date": {
+ "description": "Date of the rate (ISO format)",
+ "type": "string"
+ },
+ "from": {
+ "description": "Source currency code (uppercase)",
+ "type": "string"
+ },
+ "rate": {
+ "description": "Exchange rate applied",
+ "type": "number"
+ },
+ "to": {
+ "description": "Target currency code (uppercase)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "from",
+ "to",
+ "rate",
+ "amount",
+ "converted",
+ "date"
+ ],
+ "type": "object"
+}