{
  "$id": "http://drakemall.com/schemas/CreatePaymentConfig.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdatePaymentConfig",
  "type": "object",
  "properties": {
    "shortName": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "paymentGroup": {
      "type": "string",
      "enum": ["g2a", "ecommpay", "cardpay", "coins_paid", "skinpay", "voucherifyio", "pay_op"]
    },
    "forceMethod": {
      "type": ["string", "null"],
      "default": null
    },
    "order": {
      "type": "number",
      "default": 1
    },
    "isEnabled": {
      "type": "boolean",
      "default": false
    },
    "excludedCountries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": []
    },
    "allowedCountries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": []
    },
    "suggested": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "default": []
    },
    "suggestAll": {
      "type": "boolean",
      "default": false
    },
    "minAmount": {
      "type": "number",
      "default": 5
    },
    "maxAmount": {
      "type": "number",
      "default": 5000
    },
    "amountSteps": {
      "type": "array",
      "items": {
        "type": "number"
      },
      "default": [50, 100, 250, 30]
    },
    "icon": {
      "type": ["string", "null"],
      "default": null
    },
    "currency": {
      "type": "string",
      "default": "USD"
    }
  },
  "required": ["name", "paymentGroup"]
}
