Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/inputs/asyncapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sidebar_position: 99
---

# AsyncAPI
Supported versions: 2.0 -> 3.0
Supported versions: 2.0 -> 3.1

If you arrive from the AsyncAPI community, you might be wondering what this project is and how does it relate?

Expand Down
27 changes: 14 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"@asyncapi/avro-schema-parser": "^3.0.24",
"@asyncapi/modelina": "^6.0.0-next.11",
"@asyncapi/openapi-schema-parser": "^3.0.24",
"@asyncapi/parser": "^3.4.0",
"@asyncapi/parser": "^3.6.0",
"@asyncapi/protobuf-schema-parser": "^3.5.1",
"@asyncapi/raml-dt-schema-parser": "^4.0.24",
"@oclif/core": "^3.26.3",
Expand Down
31 changes: 31 additions & 0 deletions test/blackbox/schemas/asyncapi/asyncapi-3.1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
asyncapi: 3.1.0
info:
title: AsyncAPI 3.1 Test Service
version: 1.0.0
description: Test fixture for AsyncAPI 3.1 support
channels:
testChannel:
address: test/channel
messages:
TestMessage:
$ref: '#/components/messages/TestMessage'
operations:
sendTestMessage:
action: send
channel:
$ref: '#/channels/testChannel'
messages:
- $ref: '#/channels/testChannel/messages/TestMessage'
components:
messages:
TestMessage:
payload:
type: object
properties:
id:
type: string
timestamp:
type: string
format: date-time
required:
- id
Loading