Przelewy24 · Schema

render

PaymentsPayment GatewayBank TransferBLIKCard PaymentsE-CommercePolandPolishMulti-CurrencyFintech

Properties

Name Type Description
type string Type of form
id string ID of the block in which the iFrame will be generated
options object Additional form styling options
View JSON Schema on GitHub

JSON Schema

render.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "render",
  "required": [
    "type",
    "id"
  ],
  "properties": {
    "type": {
      "type": "string",
      "default": "form",
      "enum": [
        "form"
      ],
      "description": "Type of form"
    },
    "id": {
      "type": "string",
      "example": "#card-form-block",
      "description": "ID of the block in which the iFrame will be generated"
    },
    "options": {
      "type": "object",
      "description": "Additional form styling options"
    }
  },
  "type": "object"
}