{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-google-pay-info-schema.json", "title": "GooglePayInfo", "description": "GooglePayInfo schema from Adyen API", "type": "object", "properties": { "merchantId": { "description": "Google Pay [Merchant ID](https://support.google.com/paymentscenter/answer/7163092?hl=en). Character length and limitations: 16 alphanumeric characters or 20 numeric characters.", "maxLength": 20, "minLength": 16, "type": "string" }, "reuseMerchantId": { "description": "Indicates whether the Google Pay Merchant ID is used for several merchant accounts. Default value: **false**.", "type": "boolean" } }, "required": [ "merchantId" ] }