Neon · Schema
OAuthProvider
An OAuth provider configuration for Neon Auth
DatabasesServerlessPostgresInfrastructureAuthenticationEdge
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The OAuth provider ID |
| provider | string | The OAuth provider type (e.g., google, github, discord) |
| client_id | string | The OAuth client ID |
| enabled | boolean | Whether this provider is enabled |
| created_at | string | Provider creation timestamp |
| updated_at | string | Last update timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OAuthProvider",
"title": "OAuthProvider",
"type": "object",
"description": "An OAuth provider configuration for Neon Auth",
"properties": {
"id": {
"type": "string",
"description": "The OAuth provider ID"
},
"provider": {
"type": "string",
"description": "The OAuth provider type (e.g., google, github, discord)"
},
"client_id": {
"type": "string",
"description": "The OAuth client ID"
},
"enabled": {
"type": "boolean",
"description": "Whether this provider is enabled"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Provider creation timestamp"
},
"updated_at": {
"type": "string",
"format": "date-time",
"description": "Last update timestamp"
}
}
}