Auth0 · Schema

FlowsVaultConnectioSetupStripeKeyPair

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-flowsvaultconnectiosetupstripekeypair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowsVaultConnectioSetupStripeKeyPair",
  "title": "FlowsVaultConnectioSetupStripeKeyPair",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "type",
    "private_key",
    "public_key"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/FlowsVaultConnectioSetupTypeKeyPairEnum"
    },
    "private_key": {
      "type": "string"
    },
    "public_key": {
      "type": "string"
    }
  }
}