Giter VIP home page Giter VIP logo

Comments (5)

joelittlejohn avatar joelittlejohn commented on May 10, 2024

From [email protected] on December 22, 2010 16:47:27
{"description":"something with additional properties",
"id":"Example",
"properties":{"XXX":{"type":"string"}},
"additionalProperties":true
}

would make

{"XXX":"something",
"another property":"something else"}

valid, and I would expect the Java API to be like:

example.getAdditionalProperty("another property") returns "something else"

or

example.getAdditionalProperties() returns Map<String, Object>

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on May 10, 2024

From [email protected] on December 22, 2010 17:36:57
Actually my first code example would conflict if there was actually a property called "AdditionalProperty" - so don't try that :)

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on May 10, 2024

From [email protected] on December 22, 2010 19:07:47
Hi Matthew, I've already implemented this one in a local branch. I'm having some strange results when merging back into trunk though - more down to my lack of hg knowledge than any real problem with resolving conflicts.

The details are:

@JsonAnySetter
void setAdditionalProperties(String name, TYPE value) {...}

@JsonAnyGetter
Map<String,TYPE> getAdditionalProperties() {...}

The spec is a little hard to understand but I believe "additionalProperties":true is invalid. The default for additionalProperties is an empty schema (any additional props allowed), if additionalProperties is present it must be either false (no additional props allowed) or a schema (additional props allowed, but values must be valid according to the given schema).

So "additionalProperties":true should actually be written as "additionalProperties":{} or, alternatively, by not specifying the additionalProperties property at all.

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on May 10, 2024

From [email protected] on December 22, 2010 20:43:36
Tip of the day: feature branches are not a good workflow for Mercurial :D

from jsonschema2pojo.

joelittlejohn avatar joelittlejohn commented on May 10, 2024

From [email protected] on December 23, 2010 00:06:52
Fixed in 0.1.3

from jsonschema2pojo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.