This reminds me of:
Which would allow you to write:
.username = "kj4tmp",
.joined = @date("Jan 2, 1970"),
I am not so sure whether I like the idea of having includes in data files, seems like you can easily get back to a mess of files with that again.
But technically you could already write @import("apples.zon"), however I don’t know whether that would make a lot of sense with ziggy, because there it would just be a custom string literal, so you would have to interpret the meaning of it on the read side manually (or add it as a hack to ziggy, which probably wouldn’t fit its more strict/rigorous structuring, e.g. ziggy schema seems stricter than json schema (which is a good thing, but wouldn’t make it easy to hack in includes in a general way)).
However if you don’t actually need general includes, just sometimes have to refer to some external file in some places, then you could do that in Ziggy by using a union where one element type is some concrete type and another is a reference type that just describes the path or id to the external file.