Dataiku · Schema

AuthKey

AnalyticsArtificial IntelligenceData PlatformData ScienceMachine Learning

Properties

Name Type Description
id string Key identifier
key string The API key value
label string Descriptive label
createdOn integer Creation timestamp
allowedServices array List of services this key can access (empty means all)
View JSON Schema on GitHub

JSON Schema

dataiku-authkey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthKey",
  "title": "AuthKey",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Key identifier"
    },
    "key": {
      "type": "string",
      "description": "The API key value"
    },
    "label": {
      "type": "string",
      "description": "Descriptive label"
    },
    "createdOn": {
      "type": "integer",
      "format": "int64",
      "description": "Creation timestamp"
    },
    "allowedServices": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of services this key can access (empty means all)"
    }
  }
}