Since the new version of GX (1.0.0) adopted a different naming convention for expectations, it makes sense to have the input json adhere to this convention.
Using the pyhumps library, it should be relatively straightforward to check for pascal case (as opposed to the previous snake case), and raise an error in case this is not satisfied.
(One could also transform snake case to pascal case, but this seems like waste of compute if we adopt the new naming convention...)
Since the new version of GX (1.0.0) adopted a different naming convention for expectations, it makes sense to have the input json adhere to this convention.
Using the
pyhumps
library, it should be relatively straightforward to check for pascal case (as opposed to the previous snake case), and raise an error in case this is not satisfied.(One could also transform snake case to pascal case, but this seems like waste of compute if we adopt the new naming convention...)