You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.desc("Format of the output: json, ndjson (new line delimited JSON), csv, csvjson (json encoded in csv; useful for RDB bulk loading). Default: ndjson.")
169
179
.build();
170
180
171
181
OptionschemaConfigOption = Option.builder("s")
172
182
.numberOfArgs(1)
183
+
.argName("schema configuration")
173
184
.required(true)
174
185
.longOpt(SCHEMA_CONFIG)
175
186
.desc("Schema file to run assessment against.")
176
187
.build();
177
188
178
189
OptionschemaFormatOption = Option.builder("v")
179
190
.numberOfArgs(1)
191
+
.argName("schema format")
180
192
.required(false)
181
193
.longOpt(SCHEMA_FORMAT)
182
194
.desc("Format of schema file: json, yaml. Default: based on file extension, else json.")
0 commit comments