Evaluating: ```elixir Vex.validate(%{"a" => false}, [{"a", [presence: true]}]) ``` returns: ```elixir {:error, [{:error, "a", :presence, "must be present"}]} ``` If this is normal how can I validate that the key `a` exists in the map regardless of its value?
Evaluating:
returns:
If this is normal how can I validate that the key
aexists in the map regardless of its value?