Skip to content

Commit 7a393b6

Browse files
authored
Merge pull request #112 from regulaforensics/release-7-1
Release 7.1
2 parents 6b67218 + 622b49b commit 7a393b6

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

healthcheck.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ paths:
66
- $ref: "./common.yml#/components/parameters/x-request"
77
get:
88
summary: "Server healthcheck"
9+
description: "The `/api/healthz` endpoint performs a server health check, providing details such as the application name, license ID, serial number, validity, and product version. <br><br>Comprehensive information about service diagnostics is available on the [Monitoring page](https://docs.regulaforensics.com/develop/face-sdk/web-service/administration/monitoring/)."
910
operationId: healthz
1011
tags:
1112
- healthcheck
@@ -21,6 +22,7 @@ paths:
2122
- $ref: "./common.yml#/components/parameters/x-request"
2223
get:
2324
summary: "License healthcheck"
25+
description: "The `/api/readyz` endpoint checks the license's health to determine if the application is ready for operation. It validates the license and returns a response indicating whether the license is valid (`200`) or invalid (`400`)."
2426
operationId: readyz
2527
tags:
2628
- healthcheck

identification.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,10 @@ components:
208208
id:
209209
type: string
210210
description: "Response image ID. The list is sorted by decreasing ID value."
211+
content:
212+
type: string
213+
format: base64
214+
description: "Base64-encoded image. Returned only if `withImages` is set to true in the request."
211215
contentType:
212216
type: string
213217
description: "Original media type of the returned image."

search.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ paths:
55
/search:
66
parameters:
77
- $ref: './common.yml#/components/parameters/x-request'
8+
- in: query
9+
name: withImages
10+
required: false
11+
schema:
12+
type: boolean
13+
description: "When enabled, the response includes Base64-encoded images of matched persons. Each entry in the `persons` array contains an `images` field with image IDs and content. If omitted or set to false, images are excluded."
814
post:
915
tags:
1016
- search
@@ -84,9 +90,7 @@ definitions:
8490

8591
FilterOp:
8692
type: string
87-
description: "The filter condition, determines the type of comparison to be performed on the `name` values of the Person entity. <br><br>When set to `in`,
88-
the `name` values of the Person should match any of the values specified in the `value` list. <br><br>When set to `nin`,
89-
the `name` values of the Person should not match any of the values specified in the `value` list."
93+
description: "The filter condition, determines the type of comparison to be performed on the `name` values of the Person entity. <br><br>When set to `in`, the `name` values of the Person should match any of the values specified in the `value` list. <br><br>When set to `nin`, the `name` values of the Person should not match any of the values specified in the `value` list."
9094
enum:
9195
- "in"
9296
- "nin"

0 commit comments

Comments
 (0)