Skip to main content

Seed properties

Seed properties can be declared in .yml files under a seed key.

We recommend that you put them in the seeds/ directory. You can name these files whatever_you_want.yml, and nest them arbitrarily deeply in subfolders within that directory.

seeds/<filename>.yml
version: 2

seeds:
- name: <string>
description: <markdown_string>
config:
<seed_config>: <config_value>
docs:
show: true | false
node_color: <color_id> # Use name (such as node_color: purple) or hex code with quotes (such as node_color: "#cd7f32")
data_tests:
- <test>
- ... # declare additional tests
columns:
- name: <column name>
description: <markdown_string>
quote: true | false
data_tests:
- <test>
- ... # declare additional tests
config:
meta: {<dictionary>}
tags: [<string>]

- name: ... # declare properties of additional columns

- name: ... # declare properties of additional seeds
0