removedInput schema / properties / offPlan
Removed value: -{
- "description": "True if off-plan (under construction).",
- "type": "boolean"
-}
changedInput schema / properties / price / description
Previous value: -"Property price."New value: +"Entered property asking-price amount; not a deposit or installment."
addedOutput schema / properties / amounts / properties
Added value: +{
+ "EUR": {
+ "type": "number"
+ },
+ "GBP": {
+ "type": "number"
+ },
+ "TRY": {
+ "type": "number"
+ },
+ "USD": {
+ "type": "number"
+ }
+}
addedOutput schema / properties / amounts / required
Added value: +[
+ "GBP",
+ "EUR",
+ "USD",
+ "TRY"
+]
addedOutput schema / properties / dataSource
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / fx / properties
Added value: +{
+ "asOf": {
+ "type": "string"
+ },
+ "base": {
+ "enum": [
+ "GBP"
+ ],
+ "type": "string"
+ },
+ "rates": {
+ "properties": {
+ "EUR": {
+ "type": "number"
+ },
+ "GBP": {
+ "type": "number"
+ },
+ "TRY": {
+ "type": "number"
+ },
+ "USD": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "GBP",
+ "EUR",
+ "USD",
+ "TRY"
+ ],
+ "type": "object"
+ },
+ "source": {
+ "enum": [
+ "stored_current_rates"
+ ],
+ "type": "string"
+ }
+}
addedOutput schema / properties / fx / required
Added value: +[
+ "base",
+ "source",
+ "asOf",
+ "rates"
+]
removedOutput schema / properties / offPlan
Removed value: -{
- "type": "boolean"
-}
addedOutput schema / properties / usesStoredRate
Added value: +{
+ "type": "boolean"
+}
removedOutput schema / properties / warnings
Removed value: -{
- "items": {
- "type": "string"
- },
- "type": "array"
-}
addedOutput schema / required
Added value: +[
+ "inputCurrency",
+ "priceGBP",
+ "amounts"
+]