{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Settings", "title": "Settings", "required": [ "customPaymentSystemsAllowed" ], "type": "object", "properties": { "customPaymentSystemsAllowed": { "type": "array", "items": { "type": "string" }, "description": "Store's [custom payment](https://help.vtex.com/tutorial/how-to-configure-a-custom-payment--tutorials_451) information. Applicable only for stores that configured custom payment options.", "example": [] } }, "example": { "customPaymentSystemsAllowed": [] } }