-
Notifications
You must be signed in to change notification settings - Fork 0
/
airbyte.cue
48 lines (45 loc) · 1.14 KB
/
airbyte.cue
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
kind!: "workload"
id!: string
description!: string
name!: string
fullyQualifiedName?: null | string
version!: =~"^[0-9]+\\.[0-9]+\\.[0-9]+$"
infrastructureTemplateId!: string
useCaseTemplateId!: string
dependsOn: [...string]
tags: [...#OM_Tag]
readsFrom: [...string]
specific: {
source: {
name!: string
connectionConfiguration: {
url!: string
format!: "csv" | "json" | "jsonl" | "excel" | "excel_binary" | "feather" | "parquet" | "yaml"
provider!: {
storage!: "HTTPS" | "GCS" | "S3" | "AzBlob" | "SSH" | "SCP" | "SFTP"
user_agent!: bool
}
dataset_name!: string
}
}
destination: {
name!: string
connectionConfiguration: {
database!: string
schema!: string
}
}
connection: {
name!: string
dbtGitUrl?: null | string
}
}
#OM_Tag: {
tagFQN!: string
description?: string | null
source!: string & =~"(?i)^(Tag|Glossary)$"
labelType!: string & =~"(?i)^(Manual|Propagated|Automated|Derived)$"
state!: string & =~"(?i)^(Suggested|Confirmed)$"
href?: string | null
...
}