Overview
AsyncAPI CLI provides functionality called context. It's purpose is to help to work with AsyncAPI CLI in large projects where you do not have just one service exposing AsyncAPI document, but multiple.
Event driven architecture involves multiple actors, subscribers and publishers. One time you want to validate document A and the other time you want to generate models from document B. Every time you do it, you need to provide to AsyncAPI CLI the location of the AsyncAPI document, which might be time consuming. You can workaround it with aliases in bash profiles or with other solutions but it is better to use context feature, as you can then store it in your repository and share with other team members.
In short it means that for example instead of writing asyncapi validate /some/folder/my-asyncapi.yml you can create a context called myasync that will be an alias for and point to /some/folder/my-asyncapi.yml. This way next time you use the CLI you can do asyncapi validate myasync.
Context File location
You can have a global context for your workstation, and a project specific context.
If your use case is that you work with multiple repositories, you might want to use a global context. The .asyncapi-cli context file is then located in your home directory. You can also store your custom .asyncapi-cli file in your project with custom configuration. This way when you run asyncapi config context add inside your project, the new context is added to the context file under your project.
How to add context to a project
Manually
- Create file
.asyncapi-clicontaining minimal empty context file in:- current directory
- root of current repository
- user's home directory
Using CLI's init command
asyncapi config context init [CONTEXT-FILE-PATH]
Where [CONTEXT-FILE-PATH] instructs CLI what directory should the file .asyncapi-cli containing minimal empty context file be created in:
- current directory:
asyncapi config context init .(default) - root of current repository:
asyncapi config context init ./ - user's home directory:
asyncapi config context init ~
(if [CONTEXT-FILE-PATH] is omitted, empty context file is created in current directory)
Make use of newly created .asyncapi-cli by executing command:
asyncapi config context add [CONTEXT-NAME] [SPEC-FILE-PATH]
Setup example in a real project
Below you can see an example of context setup for Event Driven Flight status notification service of the Amadeus Airline Platform, with multiple microservices and their AsyncAPI documents.
1# One-time initialization of '.asyncapi-cli' file2(main)$ asyncapi config context init3Initialized context /amadeus-async-flight-status/.asyncapi-cli45# Adding first context6(main)$ asyncapi config context add subscriber subscriber/asyncapi.yaml7Added context "subscriber".8You can set it as your current context: asyncapi config context use subscriber9You can use this context when needed by passing subscriber as a parameter: asyncapi validate subscriber1011# Adding more contexts12(main)$ asyncapi config context add notifier notifier/asyncapi.yaml13Added context "notifier".14You can set it as your current context: asyncapi config context use notifier15You can use this context when needed by passing notifier as a parameter: asyncapi validate notifier1617(main)$ asyncapi config context add monitor monitor/asyncapi.yaml18Added context "monitor".19You can set it as your current context: asyncapi config context use monitor20You can use this context when needed by passing monitor as a parameter: asyncapi validate monitor2122# Setting monitor as default context23(main)$ asyncapi config context use monitor24monitor is set as current2526# Now you do not even have to remember the context name, and default 'monitor/asyncapi.yaml' will be validated27(main)$ asyncapi validate28File monitor/asyncapi.yaml is valid but has (itself and/or referenced documents) governance issues.29monitor/asyncapi.yaml30 1:1 warning asyncapi-defaultContentType AsyncAPI document should have "defaultContentType" field.31 1:1 warning asyncapi-id AsyncAPI document should have "id" field.32 1:1 warning asyncapi2-tags AsyncAPI object should have non-empty "tags" array.33 1:11 information asyncapi-latest-version The latest version of AsyncAPi is not used. It is recommended update to the "2.6.0" version. asyncapi34 2:6 warning asyncapi-info-contact Info object should have "contact" object. info35 19:15 warning asyncapi2-operation-operationId Operation should have an "operationId" field defined. channels.flight/update.subscribe36 26:13 warning asyncapi2-operation-operationId Operation should have an "operationId" field defined. channels.flight/queue.publish37✖ 7 problems (0 errors, 6 warnings, 1 info, 0 hints)3839# You can now use context name when running AsyncAPI commands, no need to remember file location like 'notifier/asyncapi.yaml'40(main)$ asyncapi validate notifier41File notifier/asyncapi.yaml is valid but has (itself and/or referenced documents) governance issues.42notifier/asyncapi.yaml43 1:1 warning asyncapi-defaultContentType AsyncAPI document should have "defaultContentType" field.44 1:1 warning asyncapi-id AsyncAPI document should have "id" field.45 1:1 warning asyncapi2-tags AsyncAPI object should have non-empty "tags" array.46 1:11 information asyncapi-latest-version The latest version of AsyncAPi is not used. It is recommended update to the "2.6.0" version. asyncapi47 2:6 warning asyncapi-info-contact Info object should have "contact" object. info48 18:13 warning asyncapi2-operation-operationId Operation should have an "operationId" field defined. channels.flight/update.publish49✖ 6 problems (0 errors, 5 warnings, 1 info, 0 hints)5051# Switch default context52(main)$ asyncapi config context use notifier53notifier is set as current5455# List all contexts56(main)$ asyncapi config context list57monitor: monitor/asyncapi.yaml58notifier: notifier/asyncapi.yaml59subscriber: subscriber/asyncapi.yaml
Context File structure
Fixed Fields
| Field Name | Type | Description |
|---|---|---|
| current | string | An optional string value representing one of context names, which is used as default in CLI. Default means you can run CLI commands without providing context name, like asyncapi validate, and it will run against the default - current - context. |
| store | Store Object | REQUIRED. Map of filesystem paths to target AsyncAPI documents. |
Store Object
Map of filesystem paths to target AsyncAPI documents.
Patterned Fields
| Field Pattern | Type | Description |
|---|---|---|
| {contextName} | string | An optional string value representing filesystem path to the target AsyncAPI document. |
Minimal Empty Context File
Raw JSON:
1{2 "store": {}3}
Stringified JSON:
{"store":{}}
Context File Example
Example of a context file for Event Driven Flight status notification service of the Amadeus Airline Platform, with multiple microservices and their AsyncAPI documents:
1{2 "current": "monitor",3 "store": {4 "monitor": "monitor/asyncapi.yaml",5 "notifier": "notifier/asyncapi.yaml",6 "subscriber": "subscriber/asyncapi.yaml"7 }8}
More context related CLI options
All commands for managing contexts are available under asyncapi config context CLI commands group.