@@ -29,7 +29,7 @@ Most common functionality used by JSON based APIs should work.
2929- Decent support for ` paths ` using ` application/x-www-form-urlencoded ` request bodies
3030- Comprehensive support for most ` schema ` properties, including json validation stuff like ` minLength ` ,
3131but only for ` json ` content types. Notable exceptions:
32- - ` readonly ` is currently implemented incorrectly
32+ - ` writeOnly ` / ` readonly ` is ignored
3333- ` discriminator ` is ignored, but ` union ` / ` intersection ` types will be generated based on ` anyOf ` / ` allOf ` so
3434this isn't an issue in practice
3535- No support for security schemes, you'll need to fudge these as header parameters, or implement out-of-band
@@ -242,8 +242,7 @@ CLI option.
242242The majority of attributes that can be specified by `schema` objects are supported, and accurately match the underlying
243243openapi specification / json schema validation specifications.
244244
245- Most notable exception is `readOnly` / `writeOnly` which are currently implemented incorrectly, planned to be addressed
246- as a breaking change prior to v1.
245+ Most notable exception is `readOnly` / `writeOnly` which are currently ignored, planned to be addressed prior to v1.
247246
248247| Attribute | Supported | Notes |
249248|:---------------------|:---------:|:---------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -275,7 +274,7 @@ as a breaking change prior to v1.
275274| default | ✅ | |
276275| nullable | ✅ | Also supports `type : null` as an alternative |
277276| discriminator | 🚫 | Ignored. Union / Intersection types are usd based on `anyOf` / `allOf` / `oneOf`. |
278- | readOnly | 🚫 | Produces `readonly` modifiers, but this behavior [is incorrect](https://github.com/mnahkies/openapi-code-generator/issues/157) |
277+ | readOnly | 🚫 | Not yet supported |
279278| writeOnly | 🚫 | Not yet supported |
280279| example | __N/A__ | Ignored |
281280| externalDocs | __N/A__ | Ignored |
0 commit comments