diff --git a/src/components/documentation/AuthenticationSection.vue b/src/components/documentation/AuthenticationSection.vue index b51402a..8712095 100644 --- a/src/components/documentation/AuthenticationSection.vue +++ b/src/components/documentation/AuthenticationSection.vue @@ -49,6 +49,33 @@ + + +
X-RateLimit-Limit
+ Request limit per window
+ X-RateLimit-Remaining
+ Requests remaining in current window
+ X-RateLimit-Reset
+ Unix timestamp when rate limit resets
+ Retry-After
+ Seconds to wait before retrying (on 429 errors)
+ Returns paginated province case data. Each province object contains the same COVID-19 case structure as national data with province-specific information.
+ + +Provincial Data Structure
+Returns array of province COVID-19 data with enhanced ODP/PDP tracking. Each object includes:
+| Field | +Type | +Description | +
|---|---|---|
| date | +string | +Date of the case report (YYYY-MM-DD format) | +
| day | +integer | +Day number since first case reported | +
| province.id | +string | +Province ID (e.g., '72' for Sulawesi Tengah) | +
| province.name | +string | +Province name | +
| daily.positive | +integer | +Daily new confirmed cases | +
| daily.recovered | +integer | +Daily new recovered cases | +
| daily.deceased | +integer | +Daily new death cases | +
| daily.odp.active | +integer | +Daily active ODP (Orang Dalam Pengawasan) | +
| daily.odp.finished | +integer | +Daily finished ODP observations | +
| daily.pdp.active | +integer | +Daily active PDP (Pasien Dalam Pengawasan) | +
| daily.pdp.finished | +integer | +Daily finished PDP supervisions | +
| cumulative.positive | +integer | +Total confirmed cases | +
| cumulative.recovered | +integer | +Total recovered cases | +
| cumulative.deceased | +integer | +Total death cases | +
| cumulative.active | +integer | +Current active cases | +
| cumulative.odp.total | +integer | +Total ODP cases (active + finished) | +
| cumulative.pdp.total | +integer | +Total PDP cases (active + finished) | +
| statistics.percentages.* | +float | +Percentage breakdown (active, recovered, deceased) | +
| statistics.reproduction_rate.* | +object | +Reproduction rate with confidence bounds | +