Keboola · Schema

RegistrationRequest

UI application registration request — manifest URL of the build to register.

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
manifestUrl string URL of manifest describing UI build.
activate boolean Activate version after registration.
View JSON Schema on GitHub

JSON Schema

keboola-registrationrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RegistrationRequest",
  "description": "UI application registration request \u2014 manifest URL of the build to register.",
  "required": [
    "manifestUrl"
  ],
  "properties": {
    "manifestUrl": {
      "description": "URL of manifest describing UI build.",
      "type": "string",
      "example": "https://kbc-uis.s3.amazonaws.com/kbc.manageApps/0.0.3-33-ga6bc947/manifest.json"
    },
    "activate": {
      "description": "Activate version after registration.",
      "type": "boolean",
      "example": true,
      "nullable": true
    }
  },
  "type": "object"
}