Skip to content
Merged
Changes from 2 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
29 changes: 29 additions & 0 deletions p-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,48 @@ components:
schemas:
DeviceInfo:
type: object
required: [app, licenseId, licenseType, licenseSerial, licenseValidUntil, scenarios, version]
properties:
app:
type: string
licenseId:
type: string
nullable: true
licenseType:
type: string
nullable: true
licenseSerial:
type: string
nullable: true
licenseValidUntil:
type: string
format: date-time
nullable: true
scenarios:
type: array
nullable: true
items:
type: string
version:
type: string
nullable: true
documentsDatabase:
type: object
required: [id, version, exportDate, description]
properties:
id:
type: string
nullable: true
version:
type: string
nullable: true
exportDate:
type: string
format: date
nullable: true
description:
type: string
nullable: true
example:
app: "Regula Document Reader Web API"
licenseId: "4D43A2AF-E321-496C-9A4E-5A8F3D26DF0E"
Expand All @@ -60,3 +84,8 @@ components:
licenseValidUntil: "9999-12-31T23:59:59Z"
scenarios: ["Mrz", "Barcode", "Locate"]
version: "7.5.297907.1721"
documentsDatabase:
id: "FullAuth"
version: "800111"
exportDate: "2024-11-11"
description: "FullAuth: All documents"
Loading