Skip to content

Commit a3f1d0b

Browse files
committed
Improve README
1 parent 91a27f9 commit a3f1d0b

File tree

1 file changed

+65
-1
lines changed

1 file changed

+65
-1
lines changed

README.md

+65-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,68 @@ An annotation processor converting JSON schemas to java records.
5656
import com.cosium.json_schema_to_java_record_api.JsonSchemaConfiguration;
5757
import com.cosium.json_schema_to_java_record_api.JsonSchemaFileLocation;
5858
```
59-
5. Compile to generate the java files
59+
5. Compile to generate the java files
60+
61+
# Type mapping
62+
63+
| JSON `type` | JSON `format` | JSON required | Java type |
64+
|-------------|---------------|---------------|-------------------------|
65+
| object | | | A java record |
66+
| string | date-time | | java.time.ZonedDateTime |
67+
| string | uri | | java.net.URI |
68+
| string | | | java.lang.String |
69+
| array | | | java.util.List |
70+
| number | | required | double |
71+
| number | | non required | java.lang.Double |
72+
| integer | | required | int |
73+
| integer | | non required | java.lang.Integer |
74+
| boolean | | required | boolean |
75+
| boolean | | non required | java.lang.Boolean |
76+
| null | | | java.lang.Void |
77+
78+
# JSON enum
79+
80+
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:
112+
```json
113+
{
114+
"$schema": "https://json-schema.org/draft/2020-12/schema",
115+
"$id": "address",
116+
"type": "object",
117+
"properties": {
118+
"country": {
119+
"$ref": "classpath:/com/cosium/json_schema_to_java_record_tests/case1/country.json"
120+
}
121+
}
122+
}
123+
```

0 commit comments

Comments
 (0)