{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Amount",
  "description": "Amount",
  "type": "object",
  "properties": {
    "value": {
      "description": "The quantity of the currency, denoted as a string to retain floating point precision",
      "$ref": "FloatString"
    },
    "currency": {
      "description": "The three-character code or hex string used to denote currencies",
      "$ref": "Currency"
    },
    "counterparty": {
      "description": "The Ripple address of the backing counterparty",
      "$ref": "RippleAddress"
    }
  },
  "required": ["value", "currency", "counterparty"]
}
