Auth0 · Schema

FormFieldPaymentConfig

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
provider object
charge object
credentials object
customer object
fields object
View JSON Schema on GitHub

JSON Schema

auth0-formfieldpaymentconfig-schema.json Raw ↑
{
  "$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"
    }
  }
}