FAQ

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

    asyncapi-3-tags-uniqueness


    Formats: Severity:

    asyncapi-3-tags-uniqueness checks tag arrays for duplicate name values.

    Why did this violation appear?

    The same tag name appears more than once in a tag array.

    Bad example

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

    Good example

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

    How do I fix this violation?

    Merge duplicate tags or rename them so each tag name is unique within the array.