See: Description
| Interface | Description |
|---|---|
| Example |
Example
|
The behaviour of methods inherited from java.lang.Object are undefined by the MicroProfile OpenAPI specification.
Example usage:
.components(OASFactory.createObject(Components.class)
.examples(new HashMap<String, Example>())
.addExample("review", OASFactory.createObject(Example.class)
.summary("External review example")
.description("This example exemplifies the content on our site.")
.externalValue("http://foo.bar/examples/review-example.json"))
.addExample("user", OASFactory.createObject(Example.class)
.summary("External user example")
.externalValue("http://foo.bar/examples/user-example.json"))