pub type Value = JsonValue;
pub enum Value { Null, Bool(bool), Number(JsonNumber), String(String), Array(Vec<JsonValue>), Object(Map), }