UNPKG

@rr0/data

Version:
41 lines (40 loc) 966 B
import { RR0DataJson } from "../RR0DataJson.js"; import { RR0EventJson } from "../event/RR0EventJson.js"; export type PeopleJson = RR0DataJson & { type?: "people"; title?: string; name?: string; /** * The people actually doesn't exist. */ hoax?: boolean; firstNames?: string[]; lastName?: string; pseudonyms?: string[]; /** * @deprecated Use occupation event */ occupations?: string[]; /** * @deprecated Use nationality event */ countries?: string[]; /** * The people has been caught lying or has confessed a hoax. */ discredited?: boolean; /** * @deprecated Use a "birth"-typed event instead. */ birthTime?: string; /** * @deprecated Use a "death"-typed event instead. */ deathTime?: string; gender?: "male" | "female"; id?: string; dirName?: string; image?: string; url?: string; events?: RR0EventJson[]; };