Dataiku · Schema
GlobalAPIKey
AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning
Properties
| Name | Type | Description |
|---|---|---|
| id | string | API key identifier |
| key | string | The API key value |
| label | string | Label for the API key |
| createdOn | integer | Creation timestamp |
| createdBy | string | User who created the key |
| globalPermissions | object | Global permissions granted |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GlobalAPIKey",
"title": "GlobalAPIKey",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "API key identifier"
},
"key": {
"type": "string",
"description": "The API key value"
},
"label": {
"type": "string",
"description": "Label for the API key"
},
"createdOn": {
"type": "integer",
"format": "int64",
"description": "Creation timestamp"
},
"createdBy": {
"type": "string",
"description": "User who created the key"
},
"globalPermissions": {
"type": "object",
"description": "Global permissions granted"
}
}
}