We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
__NULL__
__else__
1 parent 8329def commit 5a80777Copy full SHA for 5a80777
meltano.yml
@@ -53,7 +53,7 @@ plugins:
53
animals:
54
id: id
55
description: description
56
- __else__: null
+ __else__: __NULL__
57
environments:
58
- name: dev
59
config:
meltano_map_transform/mapper.py
@@ -26,7 +26,10 @@ class StreamTransform(InlineMapper):
26
"__filter__": {"type": ["string", "null"]},
27
"__source__": {"type": ["string", "null"]},
28
"__alias__": {"type": ["string", "null"]},
29
- "__else__": {"type": ["null"]},
+ "__else__": {
30
+ "type": ["string", "null"],
31
+ "enum": [None, "__NULL__"],
32
+ },
33
"__key_properties__": {
34
"type": ["array", "null"],
35
"items": {"type": "string"},
0 commit comments