If you can use memory-optimized tables, you can store JSON as text:
CREATE TABLE ProductCollection ( Id int identity primary key nonclustered, Data nvarchar(max) ) WITH (MEMORY_OPTIMIZED=ON)
Advantages of JSON in in-memory: