{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://fdc3.finos.org/schemas/2.0/valuation.schema.json",
  "type": "object",
  "title": "Valuation",
  "allOf": [{ "$ref": "context.schema.json#" }],
  "properties": {
    "type": { "const": "fdc3.valuation" },
    "value": { "type": "number" },
    "price": { "type": "number"},
    "CURRENCY_ISOCODE": { "type": "string", "pattern": "^[A-Z]{3}$" },
    "valuationTime": {"type": "string", "format": "date-time" },
    "expiryTime": {"type": "string", "format": "date-time" }
  },
  "required": ["value", "CURRENCY_ISOCODE"]
}
