Marvin.JsonPatch 0.7.0

dotnet add package Marvin.JsonPatch --version 0.7.0
NuGet\Install-Package Marvin.JsonPatch -Version 0.7.0
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="Marvin.JsonPatch" Version="0.7.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Marvin.JsonPatch --version 0.7.0
#r "nuget: Marvin.JsonPatch, 0.7.0"
#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 Marvin.JsonPatch as a Cake Addin
#addin nuget:?package=Marvin.JsonPatch&version=0.7.0

// Install Marvin.JsonPatch as a Cake Tool
#tool nuget:?package=Marvin.JsonPatch&version=0.7.0

JSON Patch (https://tools.ietf.org/html/rfc6902) defines a JSON document structure for expressing a sequence of operations to apply to a JavaScript Object Notation (JSON) document; it is suitable for use with the HTTP PATCH method. The "application/json-patch+json" media type is used to identify such patch documents.

One of the things this can be used for is partial updates for REST-ful API's, or, to quote the IETF: "This format is also potentially useful in other cases in which it is necessary to make partial updates to a JSON document or to a data structure that has similar constraints (i.e., they can be serialized as an object or an array using the JSON grammar)."

That's what this package is all about. Web API supports the HttpPatch method, but there's currently no implementation of the JsonPatchDocument in .NET, making it hard to pass in a set of changes that have to be applied - especially if you're working cross-platform and standardization of your API is essential.

Have a look at the project site for the current status of this package and to learn how to get started.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on Marvin.JsonPatch:

Repository Stars
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
shr670377723/CommunityServer-master
Version Downloads Last updated
0.7.0 1,320 3/2/2015
0.5.1 355 2/12/2015
0.3.0 937 12/17/2014
0.2.0 985 11/5/2014

- support for non-IConvertible types
- greatly improved performance
- avoid unnecessary reflection where possible
- stability improvements