-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_config.toml
74 lines (63 loc) · 1.91 KB
/
example_config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# The lowest and highest numbers used in the sequence column type.
# Together these two decide the number of rows generated.
start_id = 0
end_id = 10
[[columns]]
# The sequence column type contains the id number of the row, starting with `start_id` and ending with `end_id`.
type = "sequence"
name = "id"
[[columns]]
# The date column type contains a random UTC date time within the limits set.
type = "date"
name = "date"
date_from = 2020-01-01
date_to = 2024-12-31
[[columns]]
# The word column type contains a randomly generated word.
type = "word"
name = "word"
length_from = 3
length_to = 20
[[columns]]
# The comma-separated column type contains a collection of items from one of the pools, separated by commas.
type = "comma-separated"
name = "words"
pool = "words"
count_from = 1
count_to = 5
[[columns]]
# The comma-separated column type contains a collection of items from one of the pools, separated by commas.
type = "comma-separated"
name = "hierarchical"
pool = "hierarchical"
count_from = 1
count_to = 5
[[columns]]
# The comma-separated column type contains a collection of items from one of the pools, separated by commas.
type = "comma-separated"
name = "references"
pool = "references"
count_from = 0
count_to = 5
[[pools]]
# The words pool type contains randomly generated "words".
type = "words"
name = "words"
# The count values decide how many words to generate.
count_from = 5
count_to = 10
# The word length values decide how many characters each word will contain.
word_length_from = 3
word_length_to = 20
[[pools]]
# The hierarchical pool type contains data with a letter on the top level and a number on the sub level.
type = "hierarchical"
name = "hierarchical"
top_level_from = "A"
top_level_to = "F"
sub_level_from = 1
sub_level_to = 7
[[pools]]
# The references pool type contains all values generated by the id sequence, it is used in columns that connect to other rows.
type = "references"
name = "references"