python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to parse a JSON array of objects using Jackson?
I have a Json response as follows:
   {
      "data": {
        "date": "7 Apr 2022",
        "employee": [
          {
            "id": [
          ...

Mohsen
Votes: 0
Answers: 1
How to get custom schema draft in json-schema-validator-1.0.68.jar?
i am defining my custom schema draft in my json-schema.
{   "$schema": "http://oag.company.com/ver1/schema#",   
    "title": "JSON Identity Attribute Schema" 
...
Amit
Votes: 0
Answers: 0
com.fasterxml.jackson.databind.exc.InvalidFormatException: Cannot deserialize value of type from String: not one of the values accepted for Enum class
I'm upgrading a Spring Boot web service from Kotlin 1.4.32 to 1.5.0.
// Before:
kotlin("jvm") version "1.4.32"
kotlin("plugin.spring") version "1.4.32"
// Afte...

Ryan Payne
Votes: 0
Answers: 1
How do I get the path of a jackson JsonNode
I have a json that looks something like this
{
    "a": {
        "b": [
            {
                "c": {
                    "d": [{ "f": "v...
crimson589
Votes: 0
Answers: 2


