Android · Schema

Money

Represents a monetary amount with currency.

AIAndroidAutomotiveGoogleMachine LearningMobile DevelopmentSDKTVWearables

Properties

Name Type Description
currencyCode string ISO 4217 three-letter currency code (e.g., USD, EUR).
units string The whole units of the amount.
nanos integer Number of nano units (10^-9) of the amount. Must be between -999,999,999 and +999,999,999.
View JSON Schema on GitHub

JSON Schema

google-play-developer-money-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Money",
  "type": "object",
  "description": "Represents a monetary amount with currency.",
  "properties": {
    "currencyCode": {
      "type": "string",
      "description": "ISO 4217 three-letter currency code (e.g., USD, EUR)."
    },
    "units": {
      "type": "string",
      "description": "The whole units of the amount."
    },
    "nanos": {
      "type": "integer",
      "description": "Number of nano units (10^-9) of the amount. Must be between -999,999,999 and +999,999,999."
    }
  }
}