An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
You need to identify the depth you want to navigate to. See below for an example, and notice the value [0]:
SELECT TOP 100
JSON_VALUE(r.jsonContent, '$.value[0].id') as id,
JSON_VALUE(r.jsonContent, '$.value[0].deletedDateTime') as deletedDateTime,
JSON_VALUE(r.jsonContent, '$.value[0].classification') as classification,
JSON_VALUE(r.jsonContent, '$.value[0].createdDateTime') as createdDateTime
FROM
OPENROWSET(
BULK '<link>',
FORMAT = 'CSV',
FIELDQUOTE = '0x0b',
FIELDTERMINATOR ='0x0b',
ROWTERMINATOR = '0x0b'
)
WITH (
jsonContent varchar(MAX)
) AS [r]
More info here: https://learn.microsoft.com/en-us/sql/relational-databases/json/json-path-expressions-sql-server?view=sql-server-ver15#PATH
If this answers you question, then please remember to mark this as Answered.