Skip to content

Instantly share code, notes, and snippets.

@ivanignatiev
Last active December 25, 2020 12:49
Show Gist options
  • Save ivanignatiev/abca41430c6d4133f84ca979abad3a10 to your computer and use it in GitHub Desktop.
Save ivanignatiev/abca41430c6d4133f84ca979abad3a10 to your computer and use it in GitHub Desktop.
Test: JSON Reference ($ref) in PowerShell
$PSVersionTable
$TEST_JSON = '{
"foo": {"$ref": "#/bar"},
"bar": true
}'
$testObject = $TEST_JSON | ConvertFrom-Json -
$testObject | Format-List
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment