fn getJsonObject(allocator: std.mem.Allocator) !std.json.Value
fn getJsonObject(allocator: std.mem.Allocator) !std.json.Value { var v: std.json.Value = .{ .object = .empty }; try v.object.put(allocator, "one", std.json.Value{ .integer = @as(i64, @intCast(1)) }); try v.object.put(allocator, "two", std.json.Value{ .float = 2.0 }); return v; }