{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GooglePayInfo", "title": "GooglePayInfo", "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" ], "type": "object" }