sig
  type uri = string
  type t =
      SCALAR of YamlNode.uri * string
    | SEQUENCE of YamlNode.uri * YamlNode.t list
    | MAPPING of YamlNode.uri * (YamlNode.t * YamlNode.t) list
end