UnquotedJson 1.0.20

dotnet add package UnquotedJson --version 1.0.20
NuGet\Install-Package UnquotedJson -Version 1.0.20
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UnquotedJson" Version="1.0.20" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UnquotedJson --version 1.0.20
#r "nuget: UnquotedJson, 1.0.20"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install UnquotedJson as a Cake Addin
#addin nuget:?package=UnquotedJson&version=1.0.20

// Install UnquotedJson as a Cake Tool
#tool nuget:?package=UnquotedJson&version=1.0.20

UnquotedJson

UnquotedJson is a JSON5 parser.

Objects

  • Object keys may be an ECMAScript 5.1.
  • Objects may have a single trailing comma.

Arrays

  • Arrays may have a single trailing comma.

Comments

  • Single and multi-line comments are allowed.

White Space

  • Additional white space characters are allowed.

Format Convert

unquoted format convert to normal json format:

let x = """{
    0:{index:0, license:t, nameSID:n, image:"img:left", descriptionSID:t, category:r}
    }"""
let y = 
    x
    |> Json.parse
    |> Json.print

UnquotedJson is a superset of JSON, so the JSON.parse parsing function can directly parse normal JSON. follows code convert the normal format to unquoted json format:

let n = """{
    "0":{"index":0,"license":"t","nameSID":"n","image":"img:left","descriptionSID":"t","category":"r"}
    }"""

let y = 
    n
    |> Json.parse
    |> Json.print

Object Serialization

You can define serialization and deserialization functions for objects.

let serialize<'t> obj =
    obj
    |> Json.read<'t>
    |> Json.print

let deserialize<'t> text =
    text
    |> Json.parse 
    |> Json.write<'t>

Here are some examples of serialization of common object types.

Tuple

(1,"x")
[1,"x"]

Array, list, Set and so on

[1;2;3]
[1,2,3]

Record

Supports serialization of anonymous records also.

{ name = "abcdefg"; age = 18 }
{"name":"abcdefg","age":18}

Map

Map [1,"1";2,"2"]
[[1,"1"],[2,"2"]]

Option

[Some 1;None]
[[1],[]]

Union

type UionExample =
| Zero
| OnlyOne of int
| Pair of int * string

[Zero;OnlyOne 1;Pair(2,"b")]
["Zero";["OnlyOne", 1];["Pair",2,"b"]]

Provide tryRead and tryWrite to custom your convert rule

The signature of tryRead is:

tryRead:Type -> obj -> ((Type -> obj -> Json) -> Json) option

The signature of tryWrite is:

tryWrite:Type -> Json -> ((Type -> Json -> obj) -> obj) option

The usage see also FSharpConverter.fs The return value of JSON.parse is Json type that is a Discriminated Union type of F#.

UrlQuery

UnquotedJson can be used for query strings in URLs. When the field is of primitive type, the query string format is used. When the field is a complex type, use the Unqoted Json format.

The source see UrlQuery

The usage see also UrlQueryTest.fs

API

The main structure types are defined as follows:

  • The type Json see to Json.

  • The type JsonToken see to JsonToken.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on UnquotedJson:

Package Downloads
AspNetCore.UnquotedJson

ASP.NET Json serializer.

ESTreeParser

A Parser for AST Descriptor Syntax of estree.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.20 76 3/29/2024
1.0.19 71 3/8/2024
1.0.18 79 3/6/2024
1.0.17 101 1/11/2024
1.0.16 92 1/9/2024
1.0.15 106 12/29/2023
1.0.14 111 12/28/2023
1.0.13 139 9/9/2023
1.0.12 236 3/22/2023
1.0.11 279 12/21/2022
1.0.10 369 10/16/2022
1.0.8 395 5/21/2022
1.0.7 381 5/8/2022
1.0.6 524 3/14/2022
1.0.5 718 2/24/2022
1.0.4 399 1/24/2022
1.0.3 229 12/31/2021
1.0.2 272 12/19/2021
1.0.1 514 12/8/2021
1.0.0 288 12/6/2021

update nuget