From 6a7a182a51171ed987e7b2ee9b8aab1d3a5d8ce5 Mon Sep 17 00:00:00 2001 From: Apresh Agarwal Date: Tue, 12 Oct 2021 18:57:14 +0530 Subject: [PATCH] docs: add info about plugins to installation instructions (#381) --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index a2245d2a1..3c17ff4db 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,19 @@ ``` npm install @asyncapi/parser ``` +The parser by default supports AsyncAPI Schema Format and JSON Schema Format. For additional formats, you need to install additional plugins. For example: +- Avro schema + ``` + npm install @asyncapi/avro-schema-parser + ``` +- OpenAPI Schema Object + ``` + npm install @asyncapi/openapi-schema-parser + ``` +- RAML data type + ``` + npm install @asyncapi/raml-dt-schema-parser + ``` ## Examples