The answer was actually in the SELECTdoc:
WINDOW Item
WINDOW's optional offer has a general view
WINDOW window_name AS (window_definition) [, ...]
SELECT first_value(vin) OVER w
, first_value(make) OVER w
FROM inventory.vehicles
WHERE lot_Id = 9999 AND make is not null
WINDOW w AS ( PARTITION by vin );
source
share