Vitali Haradkouvitalicset.hashnode.dev·17 hours agoZod is dead. Long live ajv-ts!What is Zod Zod is a schema-level validation library with first-class Typescript types support. I want examples! Okay, here you are. Let's imagine that we want to create an object `User` with email and password fields. Both are them - required. // ex...Discusszod
Emre Erguvanchopin.hashnode.dev·Sep 15, 2023Validating recursive JSONs using JSON Schema in PythonHey there! Recently, while working on a Django app, I implemented validation for a recursive data model that would periodically be synced between the frontend and the backend through an API. It wasn't particularly easy to find a solution online, so I...DiscussPython
Pragya Bhardwajalbatrossit.hashnode.dev·Sep 5, 2023My GSoC 2023 journeyIntroduction: An Unexpected Turn In this article, I'll walk you through my rollercoaster of an adventure during Google Summer of Code (GSoC) 2023 with Postman. From the day I hesitated to apply to the moment I delivered a working product, this is a s...Discuss·1 like·41 readsAPIs
Vishnu Prasad Koradavishnuprasadkorada.hashnode.dev·Aug 24, 2023But ... what is JSON Schema?Have you ever wondered how in node.js, package.json and package-lock.json file's structure is predefined and prompts a description whenever we hover over a key ... also it has a set of predefined keys and values. Well, that's because of ... drum roll...Aditya Roshan and 1 other are discussing this2 people are discussing thisDiscuss·31 likes·113 readsJavaScriptLoved the Content! Way to Go Vishnu! 10
Michael Miormichaelmior.hashnode.dev·Jul 18, 2023LLMs for Schema AugmentationI have recently been experimenting with the use of large language models (LLMs) to augment JSON Schemas with useful features. While ChatGPT gets most of the press, there are many other LLMs that are specifically designed to work with code. The idea i...Discussjson
Coding Addacodingadda.hashnode.dev·Jun 30, 2023EveryThing About JSON!!What is JSON? JSON (JavaScript Object Notation) is a lightweight data interchange format commonly used for transmitting and storing structured data. It is based on a subset of the JavaScript programming language and is widely supported across differe...Discuss·20 likesjson
Akash Ahmedakashusr.hashnode.dev·Jun 19, 2023JSON কী এবং কীভাবে JSON data parse করতে হয়?🚀 JSON সিরিজ লিঙ্ক - https://cutt.ly/65omPp7 JavaScript Object Notation (JSON) হলো একটি Data Interchange format যেটা machine এবং human উভয়ের জন্য পড়া এবং generate করা খুব সহজ। ওয়েব এপ্লিকেশনে সার্ভার এবং ক্লায়েন্টের ডাটা কমিউনিকেশনের জন্য মূলত JSON ...Discussjson
pianoboypianoboy.hashnode.dev·Jun 14, 2023json-service-editorIf you are planning to create a front-end DEMO for demonstration, but do not have support from server personnel; If you are developing a front-end page but the server is not well developed; So json-service-editor is a good choice! git: https://github...DiscussJavaScript
Ogunuyo Ogheneruemu Biruemu.hashnode.dev·Jun 7, 2023JSON to PHP Using json_decodePHP’s json_decode function takes a JSON string and converts it into a PHP variable. Typically, the JSON data will represent a JavaScript array or object literal which json_decode will convert into a PHP array or object. The following two examples dem...Discussjson-schema
Dev lawrencedevlawrence.hashnode.dev·May 18, 2023Getting Started with JSON: Streamlining Data Handling for BeginnersIntroduction Hey there, Dev! 😀 If you're reading this article, chances are you already know that JSON (JavaScript Object Notation) is the language of modern data exchange. JSON has gained tremendous popularity due to its simplicity, versatility, and...Discuss·1 like·29 readsJavaScript