Example/JsonTest.ps1

$output = 'F:\JsonTest\MOF'

Configuration JsonTest
{
    Import-DscResource -ModuleName DSCR_JsonFile
    Node localhost
    {
        cJsonFile JsonTest {
            Ensure   = "Present"
            Path     = "F:\JsonTest.json"
            Key      = 'TestKey'
            Value    = '[true, 123, "Hello"]'  # JSON formatted string
            Encoding = 'utf8NoBOM'   #utf8 without bom
            NewLine  = 'CRLF'
        }
    }
}

JsonTest -OutputPath $output
Start-DscConfiguration -Path  $output -Verbose -wait
Remove-DscConfigurationDocument -Stage Current, Previous, Pending -Force

# Expect Output
<#
{
  "TestKey": [
    true,
    123,
    "Hello"
  ]
}
#>