FAQ

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

    asyncapi-3-tags-alphabetical


    Formats: Severity:

    asyncapi-3-tags-alphabetical keeps root tags easy to scan.

    Why did this violation appear?

    The root tags array is not sorted by name.

    Bad example

    asyncapi: 3.1.0
    tags:
      - name: users
      - name: billing
    

    Good example

    asyncapi: 3.1.0
    tags:
      - name: billing
      - name: users
    

    How do I fix this violation?

    Sort root tags alphabetically by name.