Mews · Schema

iDEAL data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
RedirectUrl string URL where the customer will be redirected after completing their iDEAL payment.
View JSON Schema on GitHub

JSON Schema

mews-idealdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdealData",
  "title": "iDEAL data",
  "required": [
    "RedirectUrl"
  ],
  "type": "object",
  "properties": {
    "RedirectUrl": {
      "minLength": 1,
      "type": "string",
      "description": "URL where the customer will be redirected after completing their iDEAL payment.",
      "format": "uri"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "IdealData"
}