JSON_VALUE function enables you to take a data from JSON text on the path specified as the second argument, and use this value in any part of the select query:
select ProductID, Name, Color, Size, Price, JSON_VALUE(Data, '$.Type') as Type
from Product
where JSON_VALUE(Data, '$.Type') = 'part'