Skip to content

Commit 4feb491

Browse files
authored
fix: 🐛 Small run_results.json schema fix (#11)
Small fix for the `run_results.json` schema
1 parent ce02845 commit 4feb491

File tree

2 files changed

+12
-19
lines changed

2 files changed

+12
-19
lines changed

meltano.yml

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ plugins:
3939
add_record_metadata: true
4040
flattening_enabled: true
4141
flattening_max_depth: 5
42+
output_path: output
4243
- name: target-redshift
4344
variant: ticketswap
4445
pip_url: git+https://github.com/TicketSwap/target-redshift.git

tap_dbt_artifacts/schemas/run-results.schema.json

+11-19
Original file line numberDiff line numberDiff line change
@@ -54,25 +54,17 @@
5454
"title": "RunResultOutput",
5555
"properties": {
5656
"status": {
57-
"anyOf": [
58-
{
59-
"type": "string",
60-
"enum": [
61-
"success",
62-
"error",
63-
"skipped",
64-
"partial success",
65-
"no-op"
66-
]
67-
},
68-
{
69-
"type": "string",
70-
"enum": ["pass", "error", "fail", "warn", "skipped"]
71-
},
72-
{
73-
"type": "string",
74-
"enum": ["pass", "warn", "error", "runtime error"]
75-
}
57+
"type": "string",
58+
"enum": [
59+
"no-op",
60+
"error",
61+
"success",
62+
"fail",
63+
"runtime error",
64+
"warn",
65+
"pass",
66+
"skipped",
67+
"partial success"
7668
]
7769
},
7870
"timing": {

0 commit comments

Comments
 (0)