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