root name
// typescript
interface Address {
street: string;
city: string;
zip: string;
}
interface Project {
id: number;
title: string;
status: string;
}
interface Root {
id: number;
name: string;
email: string;
role: string;
age: number;
active: boolean;
score: number;
address: Address;
tags: string[];
projects: Project[];
metadata: unknown | null;
}