Skip to content

Instantly share code, notes, and snippets.

@pedes
Created April 1, 2022 09:10
Show Gist options
  • Save pedes/b422724aef757afd0c8325598ee1bf2b to your computer and use it in GitHub Desktop.
Save pedes/b422724aef757afd0c8325598ee1bf2b to your computer and use it in GitHub Desktop.
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