You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A schema having a non-null `enum` array will be converted to a java enum.
81
+
82
+
# Java JSON binding
83
+
84
+
Record components will be annotated with [Jackson annotations](https://github.com/FasterXML/jackson-annotations)
85
+
86
+
# Nullability
87
+
88
+
JSON schema [required](https://json-schema.org/understanding-json-schema/reference/object#required) is supported.
89
+
By default, a property is considered as nullable. If a property is part of JSON schema [required](https://json-schema.org/understanding-json-schema/reference/object#required) array, it will be considered as non-nullable.
90
+
91
+
## JSpecify
92
+
93
+
If [JSpecify](https://jspecify.dev) nullness annotations (`@Nullable` and `@NonNull`) are part of the classpath,
94
+
they will be used to annotate generated java record components.
95
+
96
+
## Array
97
+
98
+
# Builder
99
+
100
+
## RecordBuilder
101
+
102
+
If [RecordBuilder](https://github.com/Randgalt/record-builder) annotation `io.soabase.recordbuilder.core.RecordBuilder`
103
+
is part of the classpath, the former will be added to each generated java record.
104
+
105
+
# $ref
106
+
107
+
JSON schema [$ref](https://json-schema.org/understanding-json-schema/structuring#dollarref) is supported via the classpath "protocol."
108
+
109
+
This allows you to have multiple JSON schema files referring to each other.
110
+
111
+
All `$ref` values should start with `classpath:`, followed by the absolute path to the referred JSON file like this:
0 commit comments