Zendit · Schema

Price

Monetary amount with currency.

eSIMGift CardsMobile Top-UpPaymentsPrepaid

Properties

Name Type Description
amount number
currency string
View JSON Schema on GitHub

JSON Schema

zendit-api-price-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Price",
  "description": "Monetary amount with currency.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/zendit/refs/heads/main/json-schema/zendit-api-price-schema.json",
  "type": "object",
  "properties": {
    "amount": {
      "type": "number",
      "example": 10.0
    },
    "currency": {
      "type": "string",
      "example": "USD"
    }
  }
}