Private/Format-JSON.ps1

<#
  Uses Json.Net https://www.newtonsoft.com/json for increased performance and cross-platform compatibility on PowerShell 6 and later
  #>


function ExpandPayload($response) {
  Unblock-ExternalDll
  $null = [Reflection.Assembly]::LoadFile("$PSScriptRoot\Newtonsoft.Json.dll")
  ConvertFrom-JsonNewtonsoft $response.Content
}

function Unblock-ExternalDll {
    if (Test-PowerShellSix) {
        if ($PSVersionTable.Platform -eq 'Win32NT') {
            Unblock-File "$PSScriptRoot\Newtonsoft.Json.dll"
        }
    } else {
        Unblock-File "$PSScriptRoot\Newtonsoft.Json.dll"
    }
}

function ConvertFrom-JObject($obj) {
   if ($obj -is [Newtonsoft.Json.Linq.JArray]) {
        $a = foreach($entry in $obj.GetEnumerator()) {
          @(convertfrom-jobject $entry)
        }
        return $a
   }
   elseif ($obj -is [Newtonsoft.Json.Linq.JObject]) {
    $h = [ordered]@{}
    foreach($kvp in $obj.GetEnumerator()) {
        $val =  convertfrom-jobject $kvp.value
        if ($kvp.value -is [Newtonsoft.Json.Linq.JArray]) { $val = @($val) }
        $h += @{ "$($kvp.key)" = $val }
    }
    return [pscustomobject]$h
   }
   elseif ($obj -is [Newtonsoft.Json.Linq.JValue]) {
    return $obj.Value
   }
   else {
    return $obj
   }
}

function ConvertFrom-JsonNewtonsoft {
    [CmdletBinding()]
    param([Parameter(Mandatory=$true,ValueFromPipeline=$true)]$string) 
    
    $HandleDeserializationError = 
    {
        param ([object] $sender, [Newtonsoft.Json.Serialization.ErrorEventArgs] $errorArgs)
        $currentError = $errorArgs.ErrorContext.Error.Message
        write-warning $currentError
        $errorArgs.ErrorContext.Handled = $true
        
    }

    $settings = new-object "Newtonsoft.Json.JSonSerializerSettings"
    if ($ErrorActionPreference -eq "Ignore") {
        $settings.Error = $HandleDeserializationError
    }
    $obj = [Newtonsoft.Json.JsonConvert]::DeserializeObject($string, [Newtonsoft.Json.Linq.JObject], $settings)    

    return ConvertFrom-JObject $obj
}

function ConvertTo-JsonNewtonsoft([Parameter(Mandatory=$true,ValueFromPipeline=$true)]$obj) {
    return [Newtonsoft.Json.JsonConvert]::SerializeObject($obj, [Newtonsoft.Json.Formatting]::Indented)
}