I have a python dictionary I am trying to validate using cerberus. However, one of the fields in my dict is called "type"
which conflicts with the keyword "type"
reserved by the cerberus parser.
Is there any way to get around this without having to change the original dictionary?
Part in question
{
{
...
"db": {
"type": "AzureTables",
...
}
}
}