Nabidul Islamnabidul.hashnode.dev·May 7, 2024JSON Validation...The Perfect PatchRecap of JSON Patch As discussed in a past article, a JSON patch is a format specifier that describes a sequence of operations in a JSON document. This document contains a structured and efficient approach to perform partial updates to a JSON object....19 likes·123 readsjson-patch
Nabidul Islamnabidul.hashnode.dev·Apr 17, 2024Updating APIs with HTTP Methods & JSON PatchWhat are HTTP Methods HTTP (HyperText Transfer Protocol) methods are a set of requests that enable APIs (Application Programming Interfaces) to perform CRUD (Create, Read, Update, Delete) operations. Common HTTP Methods POST - The POST method is use...2 likes·51 readshttpmethods
Hugo Alveswww.hugomalves.com·Feb 1, 2020A Guide to JSON Patch Integration in Spring AppsWhat is JSON Patch? JSON Patch is a format specified in RFC 6902 that outlines modifications to a JSON document. It enables expressing a series of operations to apply to a JSON document, making it suitable for use with the HTTP PATCH method. Let's ta...871 readsSpring