jackson-module-jsonSchema icon indicating copy to clipboard operation
jackson-module-jsonSchema copied to clipboard

Module for generating JSON Schema (v3) definitions from POJOs

Results 40 jackson-module-jsonSchema issues
Sort by recently updated
recently updated
newest added

(moved from: https://github.com/FasterXML/jackson-databind/issues/41 ) --- t would be nice to support polymorphism on schema generation. Currently, the generated schema doesn't provides information on subtypes with the above case . ```...

Would be great if there was a way to configure this to serialize / deserialize json schema fields using Java 8 Optionals, so that fields of type T with required=false...

testcase-needed

Hey, I ran into an issue when combining JsonView with JsonUnwrapped annotation. This could be potentially misuse of the API but seemingly the behaviour is unexpected. The following test case...

I have an issue where I am trying to produce a schema for an object that has a password field. Obviously the field should be write-only and never be be...

A class has a field which is an `enum`. The enum type is annotated with `@JsonFormat(shape = JsonFormat.Shape.NUMBER_INT)` so it is serialized as an integer. The enum type has an...

Provide JSON schema generation where "additionalProperties" : false will be applied for all classes which I have. Suppose I have following classes: ```java class A{ private String s; private B...

NOTE: cleaved off of #34 --- This bug seems not to be completely fixed. It doesn't throw a NPE anymore, but it doesn't generate the schema correctly either. It just...

Hi, i am trying to convert object to schema, where i'm using few enums. And sometimes the same enum is used in few places. I would love to have enum...

Refactoring to take into account validation groups and constraints on custom annotations. In doing so, made it easier to process new annotations and chain together processors. Also added the ability...

Hi, I am trying to create a JSON representation of a datamodel and want to use a JSON Schema to validate the contents. When using the JSON Schema generated by...