{
  "$schema" : "http://json-schema.org/draft-04/schema#",
  "type" : "object",
  "properties" : {
    "amountOfMoney" : {
      "$ref" : "#/definitions/AmountOfMoney"
    },
    "bin" : {
      "type" : "string"
    },
    "countryCode" : {
      "type" : "string"
    },
    "paymentProductId" : {
      "type" : "integer",
      "maximum" : 2147483647
    }
  },
  "additionalProperties" : false,
  "definitions" : {
    "AmountOfMoney" : {
      "type" : "object",
      "properties" : {
        "amount" : {
          "type" : "integer",
          "maximum" : 9223372036854775807
        },
        "currencyCode" : {
          "type" : "string"
        }
      },
      "additionalProperties" : false
    }
  }
}
