Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,4 @@ dmypy.json

# Cython debug symbols
cython_debug/
.vscode/settings.json
41 changes: 41 additions & 0 deletions asyncapi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
asyncapi: 2.2.0
info:
title: Libre:Match match data service API
version: 1.0.0-DRAFT
description: This service is in charge of processing streaming match data to subscribers
x-logo:
url: ""
license:
name: GNU AGPLv3
url: https://www.gnu.org/licenses/agpl.txt
contact:
name: Libre:Match Team
email: info@librematch.org
channels:
user/signedup:
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
securitySchemes: {}
schemas: {}
parameters: {}
tags: []
externalDocs: null
servers:
WSS:
url: api.librematch.org
protocol: wss
protocolVersion: HTTP 2.0
Loading