profee-waas-pf-waas-api/async-api/waas-async-api.yaml

23 lines
543 B
YAML

asyncapi: 2.3.0
info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user signups
channels:
card/authorization:
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