2023-01-16 15:31:02 -05:00
|
|
|
info:
|
2023-01-23 12:29:41 -05:00
|
|
|
title: CERC API Swagger - OpenAPI 3.0
|
|
|
|
description: NextGen Cities Institute API
|
2023-01-16 15:31:02 -05:00
|
|
|
termsOfService: http://swagger.io/terms/
|
|
|
|
contact:
|
2023-02-13 08:09:48 -05:00
|
|
|
email: peteryefi@gmail.com
|
2023-01-16 15:31:02 -05:00
|
|
|
version: 1.4
|
|
|
|
externalDocs:
|
|
|
|
description: Find out more about Swagger
|
|
|
|
url: http://swagger.io
|
|
|
|
paths:
|
2023-01-24 05:38:45 -05:00
|
|
|
/v1.4/uptime:
|
|
|
|
get:
|
2023-02-13 08:09:48 -05:00
|
|
|
parameters:
|
|
|
|
[]
|
2023-01-24 05:38:45 -05:00
|
|
|
tags:
|
|
|
|
- Uptime
|
|
|
|
summary: API uptime
|
|
|
|
operationId: uptime
|
|
|
|
description: Retrieve current API uptime
|
|
|
|
responses:
|
|
|
|
'200':
|
|
|
|
description: Request sucessful
|
|
|
|
content:
|
|
|
|
application/json:
|
|
|
|
schema:
|
2023-01-24 05:50:49 -05:00
|
|
|
$ref: '#/components/schemas/Uptime'
|
2023-01-16 15:31:02 -05:00
|
|
|
components:
|
|
|
|
schemas:
|
2023-01-24 05:38:45 -05:00
|
|
|
Uptime:
|
2023-01-24 05:50:49 -05:00
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
uptime:
|
|
|
|
type: string
|
|
|
|
format: hh:mm:ss.ms
|
2023-02-13 08:09:48 -05:00
|
|
|
example: "00:09:53.600281"
|