{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "Add Account Funds",
  "$id": "#wallet/add-account-funds",
  "properties": {
    "payment_method_id": {
      "type": "number",
      "format": "integer",
      "minimum": 1
    },
    "amount": {
      "type": "number",
      "minimum": 1
    },
    "customer_profile_id": {
      "type": "number",
      "format": "integer",
      "minimum": 1
    }
  },
  "required": ["payment_method_id", "amount", "customer_profile_id"],
  "type": "object"
}
