39 packages tagged with “jsonpatch”
ASP.NET Core support for JSON PATCH. This package was built from the source code at https://github.com/dotnet/dotnet/tree/c2435c3e0f46de784341ac3ed62863ce77e117b4
JSON Patch built on the System.Text.Json namespace
SystemTextJson is JSON Patch (JsonPatchDocument) RFC 6902 implementation for .NET using System.Text.Json
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.
JsonPatch support for ASP.NET Core 6 including support for ASP.NET Minimal APIs. Legacy support for ASP.NET MVC (.NET Framework 4.8). There are no external dependencies for the .NET 6 version and minimal dependencies for the .NET Framework Version. Thank you to all the contributers: * tugberkugurlu (Tugberk Ugurlu) * mindingdata (Wade Gausden) * donaldgray * lukas-shawford (Lukas Shawford) * akozmic (Adam Kozmic) * zihotki (Vasili Puchko) * nikitasavinov (Nikita) * denis-tsv (Denis) * cajonesvu (Chris Jones) * broderickt2 (Broderick)
Builds on Microsoft.AspNetCore.JsonPatch to generate JSON patch documents by comparing or observing changes to C# objects.
The JsonCons.Utilities library includes classes that complement the functionality of the System.Text.Json namespace with support for JSON Pointer, JSON Patch, and JSON Merge Patch.
This is Marvin's JsonPatch document compiled in .NET Standard. 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.
Firebend library for generating JSON patch documents.
ASP.NET Core support for JSON PATCH, based on System.Text.Json serialization. This package was built from the source code at https://github.com/dotnet/dotnet/tree/c2435c3e0f46de784341ac3ed62863ce77e117b4
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.
ASP.NET Core support for JSON PATCH.
Extensions to ensure immutable types aren't modified or removed during JSON PATCH operations
Various serialization functionalities that aren't in the `System.Text.Json` library but may already be in the counterpart `Newtonsoft.Json` library.
Artplant JSON Patch Libriary
Package Description
Optional values for C# to model omitted values (undefined in javascript) and it has a JsonConvertor to support omitted values in Json.
Streamdata.io official client
A library that allows usage of JsonPatch with Nancy
JsonPatch is a simple library that implements basic JSON Patch functionality as per RFC-6902 (http://tools.ietf.org/html/rfc6902) for .Net Core applications.
## 0.0.3 chore: update NuGet metadata ## 0.0.2 docs: add README and License ## 0.0.1 feat: initialize repository
A library that allows to create a rfc6902-based JSON Patch Document from comparing two objects.
FluentValidation extensions for OptionalValues.
From an patch json object as defined in RFC 7644, applies the operations into an object instance.
Core components of the AutoPatch Framework enabling automatic real-time synchronization of objects between server and client using JsonPatch.
Client-side components of the AutoPatch Framework enabling automatic real-time synchronization of objects with server using SignalR and JsonPatch.
Server-side components of the AutoPatch Framework for automatic real-time synchronization of objects using SignalR and JsonPatch.