Keboola · Schema

ProjectUpdateRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
name string Project name.
defaultBackend string Default storage backend.
hasTryModeOn boolean Enable try mode.
type string Project type.
expirationDays integer Project expiration in days.
billedMonthlyPrice integer Billed monthly price.
dataRetentionTimeInDays integer Data retention time in days. Applicable for Snowflake projects only.
timezone string Project time zone (e.g., “America/New_York”, “Europe/London”). Only supported with the BigQuery backend.
View JSON Schema on GitHub

JSON Schema

keboola-projectupdaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProjectUpdateRequest",
  "properties": {
    "name": {
      "description": "Project name.",
      "type": "string",
      "nullable": true
    },
    "defaultBackend": {
      "description": "Default storage backend.",
      "type": "string",
      "nullable": true
    },
    "hasTryModeOn": {
      "description": "Enable try mode.",
      "type": "boolean",
      "nullable": true
    },
    "type": {
      "description": "Project type.",
      "type": "string",
      "nullable": true
    },
    "expirationDays": {
      "description": "Project expiration in days.",
      "type": "integer",
      "nullable": true
    },
    "billedMonthlyPrice": {
      "description": "Billed monthly price.",
      "type": "integer",
      "nullable": true
    },
    "dataRetentionTimeInDays": {
      "description": "Data retention time in days. Applicable for Snowflake projects only.",
      "type": "integer",
      "nullable": true
    },
    "timezone": {
      "description": "Project time zone (e.g., \u201cAmerica/New_York\u201d, \u201cEurope/London\u201d). Only supported with the BigQuery backend.",
      "type": "string",
      "nullable": true
    }
  },
  "type": "object"
}