Auth0 · Schema

FormFieldPaymentConfigCredentials

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
public_key string
private_key string
View JSON Schema on GitHub

JSON Schema

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