Created
April 1, 2022 09:10
-
-
Save pedes/b422724aef757afd0c8325598ee1bf2b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncapi: 2.0.0 | |
info: | |
title: Account Service | |
version: 1.0.0 | |
description: This service is in charge of processing user signups | |
servers: | |
development: | |
url: development.gigantic-server.com | |
description: Development server | |
protocol: amqp | |
protocolVersion: 0.9.1 | |
channels: | |
userSignedUp: | |
subscribe: | |
message: | |
$ref: '#/components/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 user |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment