# Req 158 + 159 ## 158 Áp dụng cho tất cả statistics collections ![](https://i.imgur.com/DqgbduQ.png) ## 159 Sẽ có 1 doc chứa tất cả thông tin của các drivers (kể cả đang ko hoạt động). - **Path:** `driversOverview/driversOverview` - **Schema:** `DriversOverviewSchema` ```typescript export interface DriversOverviewSchema { driversMap: Record<string, DriverOverviewItemSchema>; } export interface DriverOverviewItemSchema { authInfo: DriverAuthInfo; name?: string; photoUrl?: string; position?: ShortPositionSchema; workingStatus?: DriverWorkingStatus; } interface ShortPositionSchema { lat: number; lon: number; } ```