Keboola · Schema

ProjectReviewersUpdateRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
adminIds array List of admin IDs that should be allowed to approve merge requests.
View JSON Schema on GitHub

JSON Schema

keboola-projectreviewersupdaterequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ProjectReviewersUpdateRequest",
  "required": [
    "adminIds"
  ],
  "properties": {
    "adminIds": {
      "description": "List of admin IDs that should be allowed to approve merge requests.",
      "type": "array",
      "items": {
        "type": "integer"
      },
      "example": [
        123,
        456
      ]
    }
  },
  "type": "object"
}