https://dagster.io/ logo
#announcements
Title
# announcements
b

Binh Pham

07/01/2020, 9:26 PM
Is it possible to create Permissive dict with dynamic amount of keys but have Enum values? I'm trying to create a dtype config, for example:
Copy code
solids:
  solid_a:
     config:
       dtype:
         col_a: type_option_a
  solid_b:
     config:
        dtype:
          col_b: type_option_a
          col_c: type_option_b
a

alex

07/01/2020, 9:46 PM
not with the set of config type we currently have
its not as elegant but you could do a list of name, type pairs