Here you can find the type definition ValidationError (since you seem to be using Clojure in the JVM, I removed #+cljs):
(deftype ValidationError [schema value expectation-delay fail-explanation])
And the definition for the ErrorContainerentry is here :
(defrecord ErrorContainer [error])
So, to get additional error information, you can simply access any of the internal fields ValidationError:
(defn validation-error-details [error]
(let [values (juxt
(->> error :error values)))
;; Usage
(validation-error-details error) ; where error holds the value you posted
source
share