Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
5 changes: 3 additions & 2 deletions p-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ paths:
content:
application/json:
schema:
$ref: "#/components/schemas/DeviceInfo"
$ref: "#/components/schemas/Healthcheck"
/readyz:
parameters:
- $ref: "./common.yml#/components/parameters/x-request"
Expand All @@ -32,7 +32,8 @@ paths:

components:
schemas:
DeviceInfo:
Healthcheck:
title: "Healthcheck"
type: object
required: [app, licenseId, licenseType, licenseSerial, licenseValidUntil, scenarios, version]
properties:
Expand Down
3 changes: 2 additions & 1 deletion p-ping.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ paths:
- $ref: "./common.yml#/components/parameters/x-request"
get:
deprecated: true
summary: "Server health check"
summary: "Server healthcheck"
operationId: ping
tags:
- healthcheck
Expand All @@ -21,6 +21,7 @@ paths:
components:
schemas:
DeviceInfo:
title: "DeviceInfo"
type: object
properties:
app-name:
Expand Down
Loading