@thedatagrid/data
Version:
Sample datasets for TheDataGrid demos and examples
28 lines (27 loc) • 609 B
TypeScript
/**
* Olympic Games data record type
*/
export interface OlympicRecord {
/** Unique identifier for the record */
Id: number;
/** Athlete's name */
Name: string;
/** Gender (M/F) */
Sex: "M" | "F";
/** Country/team name */
Team: string;
/** National Olympic Committee code */
NOC: string;
/** Olympic year */
Year: number;
/** Season (Summer/Winter) */
Season: "Summer" | "Winter";
/** Host city */
City: string;
/** Sport category */
Sport: string;
/** Specific event */
Event: string;
/** Medal won (Gold/Silver/Bronze) */
Medal: "Gold" | "Silver" | "Bronze";
}