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.
1 parent a241356 commit 193d59fCopy full SHA for 193d59f
unit_tests/sources/declarative/schema/test_dynamic_schema_loader.py
@@ -65,9 +65,19 @@
65
"paginator": {"type": "NoPagination"},
66
},
67
"schema_transformations": [
68
+ {
69
+ "type": "AddFields",
70
+ "fields": [
71
72
+ "type": "AddedFieldDefinition",
73
+ "path": ["StaticField"],
74
+ "value": "{{ {'type': ['null', 'string']} }}",
75
+ }
76
+ ],
77
+ },
78
{
79
"type": "KeysToSnakeCase",
- }
80
81
],
82
"schema_type_identifier": {
83
"schema_pointer": ["fields"],
@@ -237,6 +247,7 @@ def test_dynamic_schema_loader_manifest_flow():
237
247
"id": {"type": ["null", "integer"]},
238
248
"first_name": {"type": ["null", "string"]},
239
249
"description": {"type": ["null", "string"]},
250
+ "static_field": {"type": ["null", "string"]},
240
251
241
252
}
242
253
0 commit comments