recreate project
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
openapi: 3.0.3
|
||||
info: { title: Homework Tracking API, version: 1.0.0 }
|
||||
servers: [ { url: https://your-domain.com/api/v1 } ]
|
||||
tags: [ { name: Homework Tracking } ]
|
||||
security: [ { bearerAuth: [] } ]
|
||||
|
||||
paths:
|
||||
/homework-tracking:
|
||||
get:
|
||||
tags: [Homework Tracking]
|
||||
summary: Get homework tracking overview (Sundays, no-school event days, aggregation)
|
||||
parameters:
|
||||
- in: query
|
||||
name: start_date
|
||||
schema: { type: string, format: date, example: "2025-09-21" }
|
||||
- in: query
|
||||
name: end_date
|
||||
schema: { type: string, format: date, example: "2026-01-18" }
|
||||
responses:
|
||||
"200": { description: Tracking data returned }
|
||||
|
||||
Reference in New Issue
Block a user