Neon · Schema

AuthConfig

Neon Auth configuration for a branch, providing managed authentication built on Better Auth.

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
enabled boolean Whether Neon Auth is enabled for this branch
auth_url string The URL for the Neon Auth service
jwks_url string The JWKS URL for JWT validation
schema string The database schema used by Neon Auth (typically neon_auth)
View JSON Schema on GitHub

JSON Schema

neon-authconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthConfig",
  "title": "AuthConfig",
  "type": "object",
  "description": "Neon Auth configuration for a branch, providing managed authentication built on Better Auth.",
  "properties": {
    "enabled": {
      "type": "boolean",
      "description": "Whether Neon Auth is enabled for this branch"
    },
    "auth_url": {
      "type": "string",
      "format": "uri",
      "description": "The URL for the Neon Auth service"
    },
    "jwks_url": {
      "type": "string",
      "format": "uri",
      "description": "The JWKS URL for JWT validation"
    },
    "schema": {
      "type": "string",
      "description": "The database schema used by Neon Auth (typically neon_auth)"
    }
  }
}