Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

NameTypeRequiredDescription
projectIdstringY 
datasetNamestringY 
tablePrefixstringY 
jsonKeystringY 

Example JSON

Code Block
languagejs
{
	"outputs": {
		"type": "bigquery",
		"settings": {
			"projectid": "test-1234",
			"datasetName": "test",
			"tablePrefix": "test",
			"jsonKey": "{\"a\":\"b\"}"
		}
	},
	"rules": [{
		"id": "pixel_id",
		"type": "dimension",
		"comparator": "=",
		"value": "12345"
	}],
	"fields": ["pixel_id", "uuid"]
}

...