type JsonValueResult = Result<Map<String, Value>, MedalError>;
enum JsonValueResult { Ok(Map<String, Value>), Err(MedalError), }
Contains the success value
Contains the error value