{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FormFieldPaymentConfigCredentials", "title": "FormFieldPaymentConfigCredentials", "type": "object", "additionalProperties": false, "required": [ "public_key", "private_key" ], "properties": { "public_key": { "type": "string", "minLength": 1, "maxLength": 250 }, "private_key": { "type": "string", "minLength": 1, "maxLength": 250 } } }