asyncapi-info-license-url
asyncapi-info-license-url checks that license metadata links to the actual license text.
Why did this violation appear?
The info.license object exists but does not include url.
Bad example
asyncapi: 3.1.0
info:
title: User events
version: 1.0.0
license:
name: MIT
Good example
asyncapi: 3.1.0
info:
title: User events
version: 1.0.0
description: Events emitted by the user lifecycle service.
contact:
name: API Platform
url: https://example.com/support
email: api@example.com
license:
name: MIT
url: https://opensource.org/licenses/MIT
How do I fix this violation?
Add a stable URL for the license text.
