Keboola · Schema
TokenCreateResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| token | string | Optional provided only in specific cases. |
| created | string | |
| refreshed | string | |
| description | string | Optional user-provided description of the token. |
| uri | string | |
| isMasterToken | boolean | |
| canManageBuckets | boolean | |
| canManageTokens | boolean | |
| canReadAllFileUploads | boolean | |
| canPurgeTrash | boolean | |
| expires | string | Optional expiration date/time of the token. |
| isExpired | boolean | |
| isDisabled | boolean | |
| dailyCapacity | integer | |
| creatorToken | object | |
| bucketPermissions | object | |
| canManageProtectedDefaultBranch | boolean | |
| canCreateJobs | boolean | |
| canReadAllProjectEvents | boolean | |
| canManageDevBranches | boolean |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TokenCreateResponse",
"required": [
"id",
"token",
"created",
"refreshed",
"uri",
"isMasterToken",
"canManageBuckets",
"canManageTokens",
"canReadAllFileUploads",
"canPurgeTrash",
"isExpired",
"isDisabled",
"dailyCapacity",
"creatorToken",
"bucketPermissions",
"canManageProtectedDefaultBranch",
"canCreateJobs",
"canReadAllProjectEvents",
"canManageDevBranches"
],
"properties": {
"id": {
"type": "string"
},
"token": {
"description": "Optional provided only in specific cases.",
"type": "string"
},
"created": {
"type": "string",
"format": "date-time"
},
"refreshed": {
"type": "string",
"format": "date-time"
},
"description": {
"description": "Optional user-provided description of the token.",
"type": "string",
"nullable": true
},
"uri": {
"type": "string"
},
"isMasterToken": {
"type": "boolean"
},
"canManageBuckets": {
"type": "boolean"
},
"canManageTokens": {
"type": "boolean"
},
"canReadAllFileUploads": {
"type": "boolean"
},
"canPurgeTrash": {
"type": "boolean"
},
"expires": {
"description": "Optional expiration date/time of the token.",
"type": "string",
"format": "date-time",
"nullable": true
},
"isExpired": {
"type": "boolean"
},
"isDisabled": {
"type": "boolean"
},
"dailyCapacity": {
"type": "integer"
},
"creatorToken": {
"properties": {
"id": {
"type": "integer"
},
"description": {
"type": "string"
}
},
"type": "object"
},
"bucketPermissions": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"canManageProtectedDefaultBranch": {
"type": "boolean"
},
"canCreateJobs": {
"type": "boolean"
},
"canReadAllProjectEvents": {
"type": "boolean"
},
"canManageDevBranches": {
"type": "boolean"
}
},
"type": "object"
}