-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
156 lines (156 loc) · 3.98 KB
/
schema.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/DanielLiu1123/gencoder/blob/main/pkg/model/config.go",
"$ref": "#/$defs/Config",
"$defs": {
"BlockMarker": {
"properties": {
"start": {
"type": "string",
"description": "The start marker for code block",
"examples": [
"@gencoder.block.start:"
]
},
"end": {
"type": "string",
"description": "The end marker for code block",
"examples": [
"@gencoder.block.end:"
]
}
},
"additionalProperties": false,
"type": "object"
},
"Config": {
"properties": {
"templates": {
"type": "string",
"description": "The dir or URL to store templates",
"examples": [
"templates"
]
},
"outputMarker": {
"type": "string",
"description": "The magic comment to identify the generated file",
"examples": [
"@gencoder.generated:"
]
},
"blockMarker": {
"$ref": "#/$defs/BlockMarker",
"description": "The block marker to identify the generated block"
},
"databases": {
"items": {
"$ref": "#/$defs/DatabaseConfig"
},
"type": "array",
"description": "The list of databases"
},
"properties": {
"additionalProperties": {
"type": "string"
},
"type": "object",
"description": "The global properties"
},
"output": {
"type": "string",
"description": "The output directory for generated files",
"examples": [
"./output"
]
}
},
"additionalProperties": false,
"type": "object"
},
"DatabaseConfig": {
"properties": {
"name": {
"type": "string",
"description": "The name of the database",
"examples": [
"mydb"
]
},
"dsn": {
"type": "string",
"description": "The database connection string, gencoder uses [xo/dburl](https://github.com/xo/dburl) to provides a uniform way to parse database connections",
"examples": [
"mysql://user:password@localhost:3306/dbname"
]
},
"schema": {
"type": "string",
"description": "The schema of the database",
"examples": [
"public"
]
},
"properties": {
"additionalProperties": {
"type": "string"
},
"type": "object",
"description": "Properties specific to the database"
},
"tables": {
"items": {
"$ref": "#/$defs/TableConfig"
},
"type": "array",
"description": "The list of tables in the database"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"dsn"
]
},
"TableConfig": {
"properties": {
"schema": {
"type": "string",
"description": "The schema of the table",
"examples": [
"public"
]
},
"name": {
"type": "string",
"description": "The name of the table",
"examples": [
"user"
]
},
"properties": {
"additionalProperties": {
"type": "string"
},
"type": "object",
"description": "Properties specific to the table"
},
"ignoreColumns": {
"items": {
"type": "string",
"examples": [
"password"
]
},
"type": "array",
"description": "The list of columns to ignore"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"name"
]
}
}
}