sovrium 0.0.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,70 +0,0 @@
1
- {
2
- "openapi": "3.1.0",
3
- "info": {
4
- "title": "Sovrium API",
5
- "version": "0.0.1",
6
- "description": "REST API specification for Sovrium application.\n\n**Generated Schema**: This schema is automatically generated from the runtime implementation. It reflects the currently implemented endpoints and their schemas.\n\n**Design Specs**: Hand-written OpenAPI specs in `docs/specifications/app/` define the complete API design. Comparing this generated schema with the design specs shows implementation progress."
7
- },
8
- "servers": [
9
- {
10
- "url": "http://localhost:3000",
11
- "description": "Development server"
12
- }
13
- ],
14
- "tags": [
15
- {
16
- "name": "infrastructure",
17
- "description": "Infrastructure endpoints (health, metrics)"
18
- }
19
- ],
20
- "components": {
21
- "schemas": {},
22
- "parameters": {}
23
- },
24
- "paths": {
25
- "/api/health": {
26
- "get": {
27
- "summary": "Health check endpoint",
28
- "description": "Returns server health status. Used by monitoring tools and E2E tests to verify server is running.",
29
- "operationId": "healthCheck",
30
- "tags": ["infrastructure"],
31
- "responses": {
32
- "200": {
33
- "description": "Server is healthy",
34
- "content": {
35
- "application/json": {
36
- "schema": {
37
- "type": "object",
38
- "properties": {
39
- "status": {
40
- "type": "string",
41
- "enum": ["ok"],
42
- "description": "Server health status indicator"
43
- },
44
- "timestamp": {
45
- "type": "string",
46
- "format": "date-time",
47
- "description": "ISO 8601 timestamp of the health check"
48
- },
49
- "app": {
50
- "type": "object",
51
- "properties": {
52
- "name": {
53
- "type": "string",
54
- "description": "Application name from configuration"
55
- }
56
- },
57
- "required": ["name"],
58
- "description": "Application metadata"
59
- }
60
- },
61
- "required": ["status", "timestamp", "app"]
62
- }
63
- }
64
- }
65
- }
66
- }
67
- }
68
- }
69
- }
70
- }