A Java library for reading, manipulating, and writing OpenAPI and AsyncAPI documents.
Add to your maven project via:
<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-data-models</artifactId>
<version>2.1.0</version>
</dependency>
You can use this library to read an OpenAPI or AsyncAPI document, resulting in an instance of a data model. The data model can then be read or manipulated. It can also be validated.
The data model can be accessed directly, but there is also a robust visitor pattern available for more advanced analysis or transformation of the model.
The next section (Quickstart) explains, in a nutshell, how to use the library for standard/basic tasks. The API section below contains more information, necessary to fully leverage the capabilities of the library.
The easiest way to get started is to use the library utility class:
// Get the OpenAPI document from somewhere
String openApiData = ...;
// Use the library util to create a data model instance from the given
// data. This will convert from the source string into an instance of
// the OpenAPI data model.
Document document = Library.readDocumentFromJSONString(openApiData);
// Here you can anayze or manipulate the model.
document.info.version = "1.7";
document.info.description = "Made some changes to the OpenAPI document!";
// Validate that your changes are OK.
List<ValidationProblem> problems = Library.validate(document, null);
// And now write the node back out as a JSON string
String modifiedOpenApiData = Library.writeDocumentToJSONString(document);
The library comes with a util class that makes certain common tasks easier. These tasks include:
Library::createDocument(DocumentType): Document
Use this method to create an empty OpenAPI or AsyncAPI document (data model). You must pass one of the values of the DocumentType enum to indicate what sort of document you want (OpenAPI 2, OpenAPI 3, AsyncAPI 2, etc).
Library::readDocument(JsonNode): Document
Library::readDocumentFromJSONString(String): Document
These two methods allow you to parse a document either from a JsonNode object or from a
String and turn it into a Document. The correct type of document will automatically
be figured out based on the content passed (by interrogating the openapi
or asyncapi
properties).
Library::writeNode(Node): JsonNode
Library::readDocumentFromJSONString(Document): string
Use these method to convert from a data model instance back to a JsonNode object or
string. You can pass any node from the data model tree into the writeNode
method
and the appropriate JsonNode object will be returned. If you pass in the root document node, then the
full OpenAPI JsonNode object will be returned. If, for example, you pass in only the
document.info
child node, then a JsonNode object representing on that portion of the
data model will be returned. The readDocumentFromJSONString
method must be
sent a full Document, and will return a stringified object.
Library::addReferenceResolver(IReferenceResolver): void
The OpenAPI specification allows references across documents (in various places)
using the $ref
property. The library itself cannot resolve external references,
but rather supports a customizable reference resolution layer. Use this layer by
providing a custom implementation of the IReferenceResolver
interface and
installing it via the Library::addReferenceResolver(resolver: IReferenceResolver)
method. Multiple reference resolvers can be installed - the first resolver that
can successfully resolve a reference will win. The library has one default resolver
that is capable of resolving internal references - for example #!/components/schemas/Widget
.
Library::validate(Node, IValidationSeverityRegistry): ValidationProblem[]
Use this method to validate a document (or subsection of the document). The library includes all validation rules defined by the OpenAPI and AsyncAPI specifications. You can use this method to apply the appropriate rules to any section of the data model. The return result is an array of validation problems, or an empty array if the document is fully valid.
Note that in addition to returning an array of problems, the problems will also be stored on the model itself. Any node that violates a validation rule will have the problem object added to a collection of problems stored directly on the node itself. Thus, you can check if an individual node has any validation problems:
Node node = ...;
List<ValidationProblem> problems = node.getValidationProblems();
if (problems != null && !problems.isEmpty()) {
// The node failed validation!
}
Additionally, convenience methods exist on the node to get a more granular
list of problems, in the case where you are only interested in problems for a
specific property of the node (e.g. you might only be interested in problems
for the description
property):
let node: Node = ...;
let problems: ValidationProblem[] = node.getValidationProblemsFor('description');
if (problems && problems.length > 0) {
// The node failed validation!
}
Library::createNodePath(Node): NodePath
For more information about node paths, see the “Node Paths” section below.
This library has data model classes representing each of the objects defined by the OpenAPI and AsyncAPI specifications. Overall, an instance of a data model is simply a tree of nodes corresponding to the appropriate specification. Each node in the model is unique depending on its specification definition, in addition to sharing a common set of functionality:
As mentioned, the OpenAPI library’s data model is essentially a tree of nodes of specific types, as defined by the specification. An additional feature of the library is the ability to identify any node in the model by its “node path”. A node path is a bit like a simple XPath for an XML document. You can use a node path to quickly resolve a node. Node paths are even (sort of) human readable!
For example, you could quickly get a specific node in the standard OpenAPI Pet Store example document with the following code:
Document document = ...;
NodePath path = new NodePath("/paths[/pet/{petId}]/get/responses[200]");
Node resolvedNode = path.resolve(document);
Additionally, you can easily create a node path from a given node in the
data model by using the createNodePath(Node)
method in the
Library
class:
Document document = ...;
Node node = document.paths.pathItem("/pet/{petId}").get.responses.response("200");
NodePath path = Library.createNodePath(node);
In addition to basic reading and writing of a data model, this library also includes an implementation of the visitor pattern (useful for more advanced analysis or transformation of the data model).
To use this feature, you must create a Java class that extends the
IVisitor
interface. You can then either call accept
on any node in
the model (which will visit just that one node) or else traverse the entire
model (either up or down). Some examples are below.
Document document = getOrCreateDocument();
IVisitor visitor = new MyCustomVisitor();
// Visit ONLY the "Info" node.
Library.visitNode(document.info, visitor);
Document document = getOrCreateDocument();
IVisitor visitor = new MyCustomVisitor();
Library.visitTree(document, visitor, TraverserDirection.down);
Document document = getOrCreateDocument();
IVisitor visitor = new MyCustomVisitor();
// Visit the Info node and then the Document (root) node
Library.visitTree(document.info, visitor, OasTraverserDirection.up);