fleet-size
Fleet Size Filters
There are many filters which match company's based on number of vehicles or number of trailers.
Each size filter has two corresponding field (a *_min and a *_max field). This allows you to pass in any range of possible sizes to match against. The minimum is inclusive, and the maximum is exclusive:[min-max)
- If the minimum is unset, the range starts at 0 (no units).
- If the maximum is unset, the range will have no upper bound.
Searching for 0 units
Passing a maximum value of 1 will find companies that have exactly '0' units of the provided field. For example, to find companies with no trailers, set:
"filters":{
"carrier_trailers_max":1
}
Finding exactly 1 unit
To find companies matching exactly one unit, set a minimum value of 1 and a maximum value of 2. For example, to find companies with exactly one truck tractor and exactly one trailer, set:
"filters":{
"carrier_trailers_min":1,
"carrier_trailers_max":2,
"carrier_trucktractors_min":1,
"carrier_trucktractors_max":2
}
Filter Field | Explanation |
carrier_powerunits_min carrier_powerunits_max | Set a range on the total number of Power Units (Straight Trucks + Truck Tractors + Passenger Vehicles) |
carrier_trucktractors_min carrier_trucktractors_max | Set a range on the total number of Truck Tractors |
carrier_straighttrucks_min carrier_straighttrucks_max | Set a range on the total number of Straight Trucks |
carrier_trailers_min carrier_trailers_max | Set a range on the total number of Trailers |
carrier_buses_min carrier_buses_max | Set a range on the total number of Passenger Buses |
carrier_buses_1_8_min carrier_buses_1_8_max | Set a range on the total number of Passenger Buses with 1 to 8 seats |
carrier_buses_9_15_min carrier_buses_9_15_max | Set a range on the total number of Passenger Buses with 9 to 15 seats |
carrier_buses_16_min carrier_buses_16_max | Set a range on the total number of Passenger Buses with 16 or more seats |
carrier_vans_1_8_min carrier_vans_1_8_max | Set a range on the total number of Passenger Cars/Vans with 1 to 8 seats |
carrier_vans_9_15_min carrier_vans_9_15_max | Set a range on the total number of Passenger Vans with 9 to 15 seats |
carrier_minibus_16_min carrier_minibus_16_max | Set a range on the total number of Passenger Mini-Buses with 16 or more seats |
carrier_vans_1_8_min carrier_vans_1_8_max | Set a range on the total number of Passenger Vans with 1 to 8 seats |
carrier_vans_9_15_min carrier_vans_9_15_max | Set a range on the total number of Passenger Vans with 9 to 15 seats |
carrier_minibus_16_min carrier_minibus_16_max | Set a range on the total number of Passenger Mini-Buses with 16 or more seats |
carrier_limo_1_8_min carrier_limo_1_8_max | Set a range on the total number of Passenger Limos with 1 to 8 seats |
carrier_limo_9_15_min carrier_limo_9_15_max | Set a range on the total number of Passenger Limos with 9 to 15 seats |
carrier_limo_16_min carrier_limo_16_max | Set a range on the total number of Passenger Limos with 16 or more seats |