Fixer · JSON Structure

Fixer Fluctuation Structure

JSON Structure for a Fixer fluctuation envelope (rate change summary per currency).

Type: object Properties: 6 Required: 6
Currency ExchangeForeign ExchangeFXForexECBConversionHistorical RatesTime SeriesFluctuationAPILayerPublic APIs

FixerFluctuationResponse is a JSON Structure definition published by Fixer, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/draft-00/schema meta-schema.

Properties

success fluctuation start_date end_date base rates

Meta-schema: https://json-structure.org/draft-00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft-00/schema",
  "name": "FixerFluctuationResponse",
  "description": "JSON Structure for a Fixer fluctuation envelope (rate change summary per currency).",
  "type": "object",
  "properties": {
    "success": { "type": "boolean" },
    "fluctuation": { "type": "boolean" },
    "start_date": { "type": "string", "x-format": "date" },
    "end_date": { "type": "string", "x-format": "date" },
    "base": { "type": "string", "x-format": "iso4217" },
    "rates": {
      "type": "map",
      "values": {
        "type": "object",
        "properties": {
          "start_rate": { "type": "double" },
          "end_rate": { "type": "double" },
          "change": { "type": "double" },
          "change_pct": { "type": "double" }
        },
        "required": ["start_rate", "end_rate", "change", "change_pct"]
      }
    }
  },
  "required": ["success", "fluctuation", "start_date", "end_date", "base", "rates"]
}