I have a following JSON file/blob in the Azure Storage as students.json. Using Powershell, I want to read the contents of the file, student's FirstName and LastName where the MainSubject is Math
{
"college": {
"students": [
{
"FirstName": "abc",
"LastName": "xyz",
"MainSubject": "Computers"
},
{
"FirstName": "lmn",
"LastName": "opq"
"MainSubject": "Math"
}
]
}
}

