Properties
| Name | Type | Description |
|---|---|---|
| oauth_client_id | string | The client ID of the OAuth2 credential associated with the Polaris service connection. |
| oauth_client_secret | string | The secret for the OAuth2 credential associated with the Polaris service connection. |
| oauth_allowed_scopes | array | The scope of the OAuth token. Only one scope is included in the Iceberg REST API specification, but catalogs can support more than one scope in their implementation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "OAuth",
"type": "object",
"properties": {
"oauth_client_id": {
"type": "string",
"description": "The client ID of the OAuth2 credential associated with the Polaris service connection."
},
"oauth_client_secret": {
"type": "string",
"description": "The secret for the OAuth2 credential associated with the Polaris service connection."
},
"oauth_allowed_scopes": {
"type": "array",
"description": "The scope of the OAuth token. Only one scope is included in the Iceberg REST API specification, but catalogs can support more than one scope in their implementation."
}
}
}