-
-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Labels
area/typescriptSpecify what technical area given issue relates to. Its goal is to ease filtering good first issues.Specify what technical area given issue relates to. Its goal is to ease filtering good first issues.bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomerskeep-open
Description
Like in the subject.
Document:
asyncapi: 3.0.0
info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user signups
channels:
userSignedup:
address: user/signedup
parameters:
test:
description: I should get an error that I provide a parameter but there are no parameters in the address, or basically address in `null`
messages:
UserSignedUp:
$ref: '#/components/messages/UserSignedUp'
operations:
sendUserSignedup:
action: send
channel:
$ref: '#/channels/userSignedup'
messages:
- $ref: '#/channels/userSignedup/messages/UserSignedUp'
components:
messages:
UserSignedUp:
payload:
type: object
properties:
displayName:
type: string
description: Name of the user
email:
type: string
format: email
description: Email of the userit should not be a valid document and I should get an error saying that I have parameters but there are no parameters in the address
Metadata
Metadata
Assignees
Labels
area/typescriptSpecify what technical area given issue relates to. Its goal is to ease filtering good first issues.Specify what technical area given issue relates to. Its goal is to ease filtering good first issues.bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomerskeep-open