export interface NameIdentifierHash { name: string identifier: string } export interface Area { name: string identifier: string can_explore: boolean } export interface Location { location: NameIdentifierHash area: Area super_area: NameIdentifierHash planet: NameIdentifierHash }