Github user ivanjunckes commented on a diff in the pull request:
https://github.com/apache/tomee/pull/340#discussion_r244725584
--- Diff:
examples/mp-openapi/src/main/java/org/superbiz/openapi/Weather.java ---
@@ -0,0 +1,25 @@
+package org.superbiz.openapi;
+
+import org.eclipse.microprofile.openapi.annotations.media.Schema;
+
+@Schema(name="Weather", description="POJO that represents weather.")
--- End diff --
Can you follow a pattern with spaces? name="Wather" has no space between
name and the value. But for @Schema the variables have space. Can you make sure
to format them correctly having one space between the variable and the value?
---