Keboola · Schema

TokenVerifyResponse

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
isBYODB boolean Indicates whether the project uses Bring Your Own Database (BYODB) storage backends
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
owner object
organization object
admin object
adminOwner object
View JSON Schema on GitHub

JSON Schema

keboola-tokenverifyresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TokenVerifyResponse",
  "required": [
    "id",
    "token",
    "created",
    "refreshed",
    "uri",
    "isMasterToken",
    "isBYODB",
    "canManageBuckets",
    "canManageTokens",
    "canReadAllFileUploads",
    "canPurgeTrash",
    "isExpired",
    "isDisabled",
    "dailyCapacity",
    "creatorToken",
    "bucketPermissions",
    "canManageProtectedDefaultBranch",
    "canCreateJobs",
    "canReadAllProjectEvents",
    "canManageDevBranches",
    "owner",
    "organization"
  ],
  "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"
    },
    "isBYODB": {
      "description": "Indicates whether the project uses Bring Your Own Database (BYODB) storage backends",
      "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"
    },
    "owner": {
      "properties": {
        "id": {
          "type": "integer"
        },
        "name": {
          "type": "string"
        }
      },
      "type": "object"
    },
    "organization": {
      "properties": {
        "id": {
          "type": "integer"
        }
      },
      "type": "object"
    },
    "admin": {
      "properties": {
        "name": {
          "type": "string"
        },
        "id": {
          "type": "integer"
        },
        "features": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "isOrganizationMember": {
          "type": "boolean"
        },
        "role": {
          "type": "string"
        },
        "samlParameters": {
          "type": "object",
          "nullable": true
        }
      },
      "type": "object",
      "nullable": true
    },
    "adminOwner": {
      "type": "object",
      "nullable": true
    }
  },
  "type": "object"
}