Frankfurter · Schema

ratesOnDate

ratesOnDate schema from Frankfurter API

Currency ExchangeForeign ExchangeFXOpen SourceMITSelf-HostedPublic APIs

Properties

Name Type Description
amount object
base object
date object
rates object
View JSON Schema on GitHub

JSON Schema

v1-rates-on-date-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frankfurter/refs/heads/main/json-schema/v1-rates-on-date-schema.json",
  "title": "ratesOnDate",
  "description": "ratesOnDate schema from Frankfurter API",
  "type": "object",
  "properties": {
    "amount": {
      "$ref": "#/components/schemas/amount"
    },
    "base": {
      "$ref": "#/components/schemas/base"
    },
    "date": {
      "$ref": "#/components/schemas/date"
    },
    "rates": {
      "$ref": "#/components/schemas/rates"
    }
  },
  "required": [
    "base",
    "date",
    "rates"
  ]
}