You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Welcome to AsyncAPI. Thanks a lot for reporting your first issue. Please check out our contributors guide and the instructions about a basic recommended setup useful for opening a pull request. Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out this issue.
The following yaml snippet demonstrates object arrays not being rendered completely. Note, this type of construct will render correctly in OpenAPI.
asyncapi: 3.0.0
info:
title: Show defect Service
version: 1.0.0
description: This message payload structures are not rendered completely
components:
schemas:
BlockItem:
description: An item in a block.
type: object
properties:
Id:
type: string
format: guid
Name:
type: string
messages:
Add:
description: Block item structure is only expanded for non array property
payload:
type: object
properties:
BlockItem:
$ref: '#/components/schemas/BlockItem'
BlockItems:
type: array
Items:
$ref: '#/components/schemas/BlockItem'
yaml formatting lost so file attached.
asyncapi.yaml.txt
The text was updated successfully, but these errors were encountered: