mirror of
https://github.com/LukeHagar/redocly-cli.git
synced 2025-12-06 04:21:09 +00:00
25 lines
387 B
YAML
25 lines
387 B
YAML
asyncapi: '2.6.0'
|
|
info:
|
|
title: Not example
|
|
version: '1.0.0'
|
|
|
|
channels:
|
|
test:
|
|
publish:
|
|
message:
|
|
$ref: '#/components/messages/testMessages'
|
|
|
|
components:
|
|
messages:
|
|
testMessages:
|
|
payload:
|
|
$ref: '#/components/schemas/testSchema'
|
|
|
|
schemas:
|
|
testSchema:
|
|
type: object
|
|
properties:
|
|
key:
|
|
not:
|
|
type: integer
|