honeycomb · Schema
ApiKeyCreateRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The display name for the API key. |
| type | string | The type of API key to create. |
| permissions | object | The permissions to grant to this API key. |
| environment_id | string | The environment to scope this key to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiKeyCreateRequest",
"title": "ApiKeyCreateRequest",
"type": "object",
"required": [
"name",
"type"
],
"properties": {
"name": {
"type": "string",
"description": "The display name for the API key."
},
"type": {
"type": "string",
"description": "The type of API key to create.",
"enum": [
"configuration",
"ingest"
]
},
"permissions": {
"type": "object",
"description": "The permissions to grant to this API key.",
"additionalProperties": {
"type": "boolean"
}
},
"environment_id": {
"type": "string",
"description": "The environment to scope this key to."
}
}
}