Marvin.JsonPatch
0.5.1
See the version list below for details.
dotnet add package Marvin.JsonPatch --version 0.5.1
NuGet\Install-Package Marvin.JsonPatch -Version 0.5.1
<PackageReference Include="Marvin.JsonPatch" Version="0.5.1" />
paket add Marvin.JsonPatch --version 0.5.1
#r "nuget: Marvin.JsonPatch, 0.5.1"
// Install Marvin.JsonPatch as a Cake Addin #addin nuget:?package=Marvin.JsonPatch&version=0.5.1 // Install Marvin.JsonPatch as a Cake Tool #tool nuget:?package=Marvin.JsonPatch&version=0.5.1
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.
Learn more about Target Frameworks and .NET Standard.
-
- Newtonsoft.Json (>= 6.0.4)
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Marvin.JsonPatch:
Package | Downloads |
---|---|
Marvin.JsonPatch.Dynamic
Marvin.JsonPatch.Dynamic adds support for dynamically typed objects to Marvin.JsonPatch. Marvin.JsonPatch was built to work on staticly typed objects, which is great for most cases. Yet sometimes you'll want to create a patch document without having a static type to start from (for example: when integrating with a backend that's out of your control), or you'll want to apply a JsonPatchDocument to a dynamic object, or an object that has a property which isn't statically typed. That's what this component takes care of. It extends Marvin.JsonPatch with new methods on JsonPatchDocument, and it allows you to apply the JsonPatchDocument to dynamically typed objects. |
|
Swoogan.Resource
A client REST library for .NET with an API that models Angular's ngResource |
|
StreamData.Client
Streamdata.io official client |
|
JsonPatchGenerator.Marvin.JsonPatch
A library that allows to create a rfc6902-based JSON Patch Document from comparing two objects. |
GitHub repositories (3)
Showing the top 3 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
|
|
Havunen/SystemTextJsonPatch
SystemTextJsonPatch is a JSON Patch (JsonPatchDocument) RFC 6902 implementation for .NET using System.Text.Json
|
Version | Downloads | Last updated |
---|---|---|
2.2.1 | 2,012,765 | 4/6/2022 |
2.2.1-rc | 1,385 | 3/29/2022 |
2.2.0 | 284,388 | 4/13/2021 |
2.1.1 | 414,132 | 5/22/2019 |
2.1.0 | 603,925 | 1/29/2018 |
2.0.0 | 40,197 | 11/20/2017 |
1.1.0 | 136,697 | 7/4/2017 |
1.0.0 | 520,060 | 9/5/2016 |
0.9.0 | 259,862 | 9/16/2015 |
0.7.0 | 21,388 | 3/2/2015 |
0.5.1 | 4,791 | 2/12/2015 |
0.3.0 | 8,972 | 12/17/2014 |
0.2.0 | 21,373 | 11/5/2014 |
- fixed "operations" envelope requirement: this envelope is now no longer required (cfr spec)
- better support for derived classes