Keboola · Schema

FeatureUpdateRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
title string Feature title (display name).
description string Short description of the feature.
canBeManageByAdmin boolean If true, the feature can be assigned by a user without the superadmin role.
canBeManagedViaAPI boolean Enables or disables the ability to assign the project/admin feature using the API.
View JSON Schema on GitHub

JSON Schema

keboola-featureupdaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FeatureUpdateRequest",
  "required": [],
  "properties": {
    "title": {
      "description": "Feature title (display name).",
      "type": "string",
      "example": "Show new design",
      "nullable": true
    },
    "description": {
      "description": "Short description of the feature.",
      "type": "string",
      "example": "Users with this feature will see new UI",
      "nullable": true
    },
    "canBeManageByAdmin": {
      "description": "If true, the feature can be assigned by a user without the superadmin role.",
      "type": "boolean",
      "example": false,
      "nullable": true
    },
    "canBeManagedViaAPI": {
      "description": "Enables or disables the ability to assign the project/admin feature using the API.",
      "type": "boolean",
      "example": true,
      "nullable": true
    }
  },
  "type": "object"
}