mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 16:11:43 +01:00
Currently only contains basic auth definitions to keep it simple stupid. Mostly just following https://swagger.io/docs/specification/v3_0/authentication/basic-authentication/ Document can be printed via new command: openapi print
20 lines
325 B
YAML
20 lines
325 B
YAML
openapi: 3.1.0
|
|
info:
|
|
title: difluoroborane
|
|
description: FabAccess Auth API
|
|
contact:
|
|
name: dequbed
|
|
email: me@dequbed.space
|
|
license:
|
|
name: GPL-3.0
|
|
identifier: GPL-3.0
|
|
version: 0.4.2
|
|
paths: {}
|
|
components:
|
|
securitySchemes:
|
|
basicAuth:
|
|
type: http
|
|
scheme: basic
|
|
security:
|
|
- basicAuth: []
|