/open-api-dart

OpenAPI (Swagger) data structures in Dart

Primary LanguageDartBSD 2-Clause "Simplified" LicenseBSD-2-Clause

open_api_dart

Reads and writes OpenAPI (Swagger) specifications.

Example

final file = new File("test/specs/kubernetes.json");
final contents = await file.readAsString();
final doc = new APIDocument.fromJSON(contents);

final output = JSON.encode(doc.asMap());