openapi: 3.1.0 info: title: fete API description: Privacy-focused event announcements and RSVPs version: 0.1.0 license: name: GPL-3.0-or-later identifier: GPL-3.0-or-later servers: - url: /api paths: /health: get: operationId: getHealth summary: Health check tags: - health responses: "200": description: Service is healthy content: application/json: schema: $ref: "#/components/schemas/HealthResponse" components: schemas: HealthResponse: type: object required: - status properties: status: type: string example: UP