Class SchemaWriter
- java.lang.Object
-
- io.smallrye.openapi.runtime.io.schema.SchemaWriter
-
public class SchemaWriter extends Object
Writing the Schema to json- Author:
- Phillip Kruger (phillip.kruger@redhat.com), Eric Wittmann (eric.wittmann@gmail.com)
- See Also:
- schemaObject
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidwriteSchema(com.fasterxml.jackson.databind.node.ObjectNode parent, org.eclipse.microprofile.openapi.models.media.Schema model, String name)Writes aSchemato the JSON tree.static voidwriteSchemas(com.fasterxml.jackson.databind.node.ObjectNode parent, Map<String,org.eclipse.microprofile.openapi.models.media.Schema> schemas)Writes a map ofSchemato the JSON tree.
-
-
-
Method Detail
-
writeSchemas
public static void writeSchemas(com.fasterxml.jackson.databind.node.ObjectNode parent, Map<String,org.eclipse.microprofile.openapi.models.media.Schema> schemas)Writes a map ofSchemato the JSON tree.- Parameters:
parent- the parent json nodeschemas- map of Schema models
-
writeSchema
public static void writeSchema(com.fasterxml.jackson.databind.node.ObjectNode parent, org.eclipse.microprofile.openapi.models.media.Schema model, String name)Writes aSchemato the JSON tree.- Parameters:
parent- the parent json nodemodel- Schema modelname- name of the node
-
-