From a3495c8ad89bd3a81f610e1cc5d6dcff8a48248f Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 18 Jan 2024 10:45:55 +0100 Subject: [PATCH] fixup! fix(openapi): Regenerate OpenAPI --- apps/systemtags/openapi.json | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 apps/systemtags/openapi.json diff --git a/apps/systemtags/openapi.json b/apps/systemtags/openapi.json new file mode 100644 index 0000000000000..691717c648429 --- /dev/null +++ b/apps/systemtags/openapi.json @@ -0,0 +1,49 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "systemtags", + "version": "0.0.1", + "description": "Collaborative tagging functionality which shares tags among users.", + "license": { + "name": "agpl" + } + }, + "components": { + "securitySchemes": { + "basic_auth": { + "type": "http", + "scheme": "basic" + }, + "bearer_auth": { + "type": "http", + "scheme": "bearer" + } + }, + "schemas": { + "Capabilities": { + "type": "object", + "required": [ + "systemtags" + ], + "properties": { + "systemtags": { + "type": "object", + "required": [ + "enabled" + ], + "properties": { + "enabled": { + "type": "boolean", + "enum": [ + true + ] + } + } + } + } + } + } + }, + "paths": {}, + "tags": [] +} \ No newline at end of file