Skip to main content

Posts

Showing posts from August, 2025

Extracting keys from a very large JSON response

 can do this using notepad++ and regex example - retrieve only keys containing 'value':    "appRoles": [     {       "allowedMemberTypes": [         "Application"       ],       "description": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",       "displayName": "Read all access reviews",       "id": "d07a8cc0-3d51-4b77-b3b0-32704d1f69fa",       "isEnabled": true,       "origin": "Application",       "value": "AccessReview.Read.All"     },     {       "allowedMemberTypes": [         "Application"       ],       "description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a s...