How to get meta-data describing the returned JSON data below and load it into an object?
**********************
Transcript started, output file is jsonfu
PS /home/nicholas/Desktop/takeout-20201215T221239Z-001/Takeout/Hangouts Chat/Groups/e> $request = 'http://musicbrainz.org/ws/2/recording/fcbcdc39-8851-4efc-a02a-ab0e13be224f?inc=artist-credits+isrcs+releases&fmt=json'
PS /home/nicholas/Desktop/takeout-20201215T221239Z-001/Takeout/Hangouts Chat/Groups/e> $result = Invoke-WebRequest $request
PS /home/nicholas/Desktop/takeout-20201215T221239Z-001/Takeout/Hangouts Chat/Groups/e> $result
StatusCode : 200
StatusDescription : OK
Content : {"releases":[{"id":"9c7a7669-b43a-3323-906b-c3f0bedc10c9","release-events":[{"date":"2007-11-07","area":{"type"
:null,"name":"Japan","disambiguation":"","iso-3166-1-codes":["JP"],"type-id":null,"sort-n…
RawContent : HTTP/1.1 200 OK
Date: Thu, 17 Dec 2020 14:48:49 GMT
Connection: keep-alive
Keep-Alive: timeout=15
Vary: Accept-Encoding
X-RateLimit-Limit: 1200
X-RateLimit-Remaining: 749
X-RateLimit-Reset: 1608216530…
Headers : {[Date, System.String[]], [Connection, System.String[]], [Keep-Alive, System.String[]], [Vary,
System.String[]]…}
Images : {}
InputFields : {}
Links : {}
RawContentLength : 4732
RelationLink : {}
PS /home/nicholas/Desktop/takeout-20201215T221239Z-001/Takeout/Hangouts Chat/Groups/e> exit
**********************
PowerShell transcript end
End time: 20201217064923
**********************
this is in the context of parsing a JSON file stored locally.
This is on Linux, so not quite sure what might not be available.
see also:
Iterating through a JSON file PowerShell
which looks, if not intractable, then at least not insignificant.