Skip to content

Commit 5631b9c

Browse files
authored
Merge pull request #834 from finos/833-fdc3valuation-has-incorrect-country_iscode
Valuation schema update due to a misspelling
2 parents 1d09389 + f30b08e commit 5631b9c

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9696
* Updated Methods.ts to support the updated signature for `addContextListener` introduced in FDC3 1.2 ([#462](https://github.com/finos/FDC3/pull/462))
9797
* Clarified the description of the addContextListener functions from the Desktop Agent and Channel APIs in spec and docs. ([#492](https://github.com/finos/FDC3/pull/492))
9898
* Clarified that implementing `fdc3.getInfo()` is required for compliance with the FDC3 standard ([#515](https://github.com/finos/FDC3/pull/515))
99+
* Corrected syntax errors in valuation schema ([#834](https://github.com/finos/FDC3/pull/834))
99100

100101
## [npm v1.2.0] - 2021-04-19
101102

src/context/schemas/valuation.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": { "const": "fdc3.valuation" },
99
"value": { "type": "number" },
1010
"price": { "type": "number"},
11-
"CURRENCY_ISCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
11+
"CURRENCY_ISOCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
1212
"valuationTime": {"type": "string", "format": "date-time" },
1313
"expiryTime": {"type": "string", "format": "date-time" }
1414
},

website/static/schemas/2.0/valuation.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"type": { "const": "fdc3.valuation" },
99
"value": { "type": "number" },
1010
"price": { "type": "number"},
11-
"CURRENCY_ISCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
11+
"CURRENCY_ISOCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
1212
"valuationTime": {"type": "string", "format": "date-time" },
1313
"expiryTime": {"type": "string", "format": "date-time" }
1414
},

0 commit comments

Comments
 (0)