Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 0b7b360

Browse files
authored
Fixes link and less than and greater than signs (#349)
1 parent 18f7b38 commit 0b7b360

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ And many more!
7373
- Very [thorough documentation generated in the style of javadocs, includes code samples](samples/client/petstore/java/docs/components/schemas/Money.md#money)
7474
- Input types constrained for a Schema in SomeSchema.validate
7575
- validate method can accept arbitrary List/Map/null/int/long/double/float/String json data
76-
- Immutable List output classes generated and returned by validate for List<?> input
77-
- Immutable Map output classes generated and returned by validate for Map<?,?> input
76+
- Immutable List output classes generated and returned by validate for List&lt;?&gt; input
77+
- Immutable Map output classes generated and returned by validate for Map&lt;?, ?&gt; input
7878
- Strictly typed list input can be instantiated in client code using generated ListBuilders
7979
- Strictly typed map input can be instantiated in client code using generated MapBuilders
8080
- Sequential map builders are generated ensuring that required properties are set before build is invoked. Looks like:
@@ -96,7 +96,7 @@ And many more!
9696
- Payload values are not coerced when validated, so a datetime value can pass other validations that describe the payload only as type string
9797
- types are generated for enums of type string/integer/boolean using typing.Literal
9898
- String transmission of numbers supported with type: string, format: number, value can be accessed as a Decimal with schemas.as_decimal(inst)
99-
- [Autogenerated thorough testing of json schema keyword features in models and endpoints](https://github.com/openapi-json-schema-tools/openapi-json-schema-generator/tree/master/samples/client/3_0_3_unit_test/java/src/test/java/org/openapijsonschematools/client/schemas) which come from the [json schema test suite](https://github.com/json-schema-org/JSON-Schema-Test-Suite)
99+
- [Autogenerated thorough testing of json schema keyword features in models and endpoints](samples/client/3_0_3_unit_test/java/src/test/java/org/openapijsonschematools/client/components/schemas) which come from the [json schema test suite](https://github.com/json-schema-org/JSON-Schema-Test-Suite)
100100
- [Tests are passing in CI](https://app.circleci.com/pipelines/github/openapi-json-schema-tools/openapi-json-schema-generator?branch=master)
101101

102102
And many more!

0 commit comments

Comments
 (0)