Keboola · Schema

BigQueryListingSection

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
listingId string GCP listing ID (letters, digits and underscores; unique within the exchange).
subscribers array IAM principals, each prefixed with "user:" or "group:" (e.g. "user:[email protected]").
View JSON Schema on GitHub

JSON Schema

keboola-bigquerylistingsection.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "BigQueryListingSection",
  "required": [
    "listingId",
    "subscribers"
  ],
  "properties": {
    "listingId": {
      "description": "GCP listing ID (letters, digits and underscores; unique within the exchange).",
      "type": "string"
    },
    "subscribers": {
      "description": "IAM principals, each prefixed with \"user:\" or \"group:\" (e.g. \"user:[email protected]\").",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "type": "object"
}