bffh/api/openapi/authentication.yaml
Andreas Bergmeier 8c6a1376d0 Add initial authentication OpenAPI
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
2025-01-19 18:35:38 +01:00

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: []