{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OAuthAuthConfig", "title": "OAuthAuthConfig", "type": "object", "properties": { "type": { "type": "string", "const": "oauth" }, "client_id": { "description": "The OAuth client identifier.", "type": "string", "example": "d745213a-b7e8-4998-abe3-41f164001970" }, "authorization_endpoint": { "description": "The URL where users are redirected to authorize access.", "type": "string", "format": "uri", "example": "https://identity.service.com/oauth/authorize" }, "token_endpoint": { "description": "The URL used to retrieve access tokens.", "type": "string", "format": "uri", "example": "https://identity.service.com/oauth/token" } }, "required": [ "type", "client_id", "authorization_endpoint", "token_endpoint" ], "x-speakeasy-name-override": "OauthAuthConfig" }