Error: missing keyword: :schema

Hi,

I am trying to generate data set using mackaroo.
Expected data set:

[
  {
		"id": 1,
		"first_name": "Dunstan",
		"last_name": "Whyte",
		"email": "dwhyte0@cnn.com",
		"gender": "Male",
		"events": [{
				"id": 1
				"name": "Birthday Party"
			}
			...
		]
	},
	...
]

Here is the screenshot with respect to the column and its types

Till 30-06-2023, It was working fine and also generates the expected results as shown above.
But for not is shows me error.
"error: missing keyword: :schema"

[
  {
		"id": 1,
		"first_name": "Dunstan",
		"last_name": "Whyte",
		"email": "dwhyte0@cnn.com",
		"gender": "Male",
		"events": "error: missing keyword: :schema"
	}, {
		"id": 2,
		"first_name": "Darrel",
		"last_name": "Tredinnick",
		"email": "dtredinnick1@wiley.com",
		"gender": "Male",
		"events": "error: missing keyword: :schema"
	},
	...
]

Please suggest a solution to fix the error "error: missing keyword: :schema", or any alternate for it.

For implementation, I followed this documentation.

Thank you

This should now be fixed.

1 Like