I'd like to achieve the following:
export const MediaResponseSchema = z.object({
mediaId: z.number(),
childMedias: z.array(z.object(MediaResponseSchema)),
});
I.e. the childMedia should be parsed as an array of the schema I'm declaring. Is is possible?