Frankfurter · JSON Structure

V2 Currency Detail Structure

CurrencyDetail schema from Frankfurter API

Type: object Properties: 6 Required: 2
Currency ExchangeForeign ExchangeFXOpen SourceMITSelf-HostedPublic APIs

CurrencyDetail is a JSON Structure definition published by Frankfurter, describing 6 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

iso_code iso_numeric name symbol providers peg

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/frankfurter/refs/heads/main/json-structure/v2-currency-detail-structure.json",
  "name": "CurrencyDetail",
  "description": "CurrencyDetail schema from Frankfurter API",
  "type": "object",
  "properties": {
    "iso_code": {
      "type": "string",
      "description": "ISO 4217 currency code"
    },
    "iso_numeric": {
      "type": "string",
      "description": "ISO 4217 numeric code"
    },
    "name": {
      "type": "string",
      "description": "Full currency name"
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol"
    },
    "providers": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Provider keys that publish this currency"
    },
    "peg": {
      "type": "object",
      "properties": {
        "base": {
          "type": "string"
        },
        "rate": {
          "type": "double"
        },
        "authority": {
          "type": "string"
        },
        "source": {
          "type": "uri"
        }
      },
      "description": "Peg metadata, present only for pegged currencies"
    }
  },
  "required": [
    "iso_code",
    "name"
  ]
}