Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions p-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ paths:
parameters:
- $ref: "./common.yml#/components/parameters/x-request"
get:
summary: "Server healthcheck"
summary: "Server health check"
operationId: healthz
tags:
- healthcheck
Expand All @@ -15,12 +15,12 @@ paths:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceInfo"
$ref: "#/components/schemas/Healthcheck"
/readyz:
parameters:
- $ref: "./common.yml#/components/parameters/x-request"
get:
summary: "License healthcheck"
summary: "License health check"
operationId: readyz
tags:
- healthcheck
Expand All @@ -32,7 +32,8 @@ paths:

components:
schemas:
DeviceInfo:
Healthcheck:
title: "Health check"
type: object
required: [app, licenseId, licenseType, licenseSerial, licenseValidUntil, scenarios, version]
properties:
Expand Down
1 change: 1 addition & 0 deletions p-ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ paths:
components:
schemas:
DeviceInfo:
title: "DeviceInfo"
type: object
properties:
app-name:
Expand Down
Loading