Python cerberus has a validation rule called meta where I assign a dict to meta rule. How am i supposed to access it? I am writing a custom error_handler using this to customise the error messages.
My target is schema = {'a': {'type': 'integer', 'meta': {'label': 'Age'}}}
and would like to use the label in my error message.
Any help would be appreciated.