Helicone · Schema
DecryptedProviderKey
AI GatewaysAI MonitoringGatewaysLLM ObservabilityLLM RoutingPrompt Management
Properties
| Name | Type | Description |
|---|---|---|
| cuid | string | |
| provider_secret_key | string | |
| provider_key_name | string | |
| provider_name | string | |
| provider_key | string | |
| org_id | string | |
| id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DecryptedProviderKey",
"title": "DecryptedProviderKey",
"properties": {
"cuid": {
"type": "string",
"nullable": true
},
"provider_secret_key": {
"type": "string",
"nullable": true
},
"provider_key_name": {
"type": "string",
"nullable": true
},
"provider_name": {
"type": "string",
"nullable": true
},
"provider_key": {
"type": "string",
"nullable": true
},
"org_id": {
"type": "string",
"nullable": true
},
"id": {
"type": "string",
"nullable": true
}
},
"required": [
"provider_secret_key",
"provider_key_name",
"provider_name",
"provider_key",
"org_id",
"id"
],
"type": "object"
}