asyncapi-3-tags
asyncapi-3-tags requires the document to include root-level tags.
Why did this violation appear?
The root tags array is missing or empty.
Bad example
asyncapi: 3.1.0
info:
title: User events
version: 1.0.0
Good example
asyncapi: 3.1.0
info:
title: User events
version: 1.0.0
tags:
- name: users
description: User lifecycle events.
How do I fix this violation?
Add root tags that describe the major event families in the document.
