FAQ

  • GitHub GitHub Repo stars
  • Discord Discord Server
  • ✨ New! Try the OpenAPI Doctor ✨ The OpenAPI Doctor

    asyncapi-3-tag-description


    Formats: Severity:

    asyncapi-3-tag-description checks tag objects for explanatory description values.

    Why did this violation appear?

    A tag has a name but no description.

    Bad example

    asyncapi: 3.1.0
    tags:
      - name: users
    

    Good example

    asyncapi: 3.1.0
    tags:
      - name: users
        description: User lifecycle events.
    

    How do I fix this violation?

    Add a short description to each tag so readers understand the grouping.