{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldPaymentConfig", "title": "FormFieldPaymentConfig", "type": "object", "additionalProperties": false, "required": [ "charge", "credentials" ], "properties": { "provider": { "$ref": "#/components/schemas/FormFieldPaymentConfigProviderEnum" }, "charge": { "$ref": "#/components/schemas/FormFieldPaymentConfigCharge" }, "credentials": { "$ref": "#/components/schemas/FormFieldPaymentConfigCredentials" }, "customer": { "$ref": "#/components/schemas/FormFieldPaymentConfigCustomer" }, "fields": { "$ref": "#/components/schemas/FormFieldPaymentConfigFields" } } }