chore: update v3 OpenAPI specs to v3.667.0#18
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
e983a01 to
3edb654
Compare
3edb654 to
866e97f
Compare
| type: string | ||
| format: binary | ||
| description: >- | ||
| Array of 6–8 JPEG liveness images. Required unless use_enrolled_image is true. | ||
| Array of JPEG liveness images. Required unless use_enrolled_image is true. |
There was a problem hiding this comment.
Suggestion: The description no longer mentions the 6–8 range, but minItems: 6 and maxItems: 8 constraints are still present in the schema. This creates an inconsistency: the description says "Array of JPEG liveness images" (implying flexible count) while the schema still enforces 6–8. Either update the constraints to match the new description or restore the count range in the description. [general, importance: 5]
New proposed code:
liveness_images:
type: array
- minItems: 6
+ minItems: 1
maxItems: 8
items:
type: string
format: binary
description: >-
Array of JPEG liveness images. Required unless use_enrolled_image is true.There was a problem hiding this comment.
Pull request overview
Automated update to the v3 OpenAPI “entry” specs for release v3.667.0, primarily simplifying liveness-related descriptions and pruning a removed 400-response error example, plus recording the update in the changelog.
Changes:
- Removed the explicit “6–8” wording from
liveness_imagesdescriptions across affected v3 specs. - Removed the
insufficientLiveness400-response example blocks where present. - Added a v3.667.0 entry to
CHANGELOG.md.
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| CHANGELOG.md | Adds the v3.667.0 changelog entry documenting the spec updates. |
| specs/v3/v3-biometric-authentication-entry.yaml | Updates liveness_images description to remove the “6–8” wording. |
| specs/v3/v3-biometric-enrollment-entry.yaml | Removes insufficientLiveness 400 example and removes “6–8” wording from liveness description. |
| specs/v3/v3-biometric-kyc-entry.yaml | Removes insufficientLiveness 400 example and removes “6–8” wording from liveness description. |
| specs/v3/v3-document-verification-entry.yaml | Removes insufficientLiveness 400 example and removes “6–8” wording from liveness description. |
| specs/v3/v3-enhanced-document-verification-entry.yaml | Removes insufficientLiveness 400 example and removes “6–8” wording from liveness description. |
| specs/v3/v3-smart-selfie-compare-entry.yaml | Updates liveness_images description to remove the “6–8” wording. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
User description
Automated v3 OpenAPI spec update for v3.667.0.
Triggered by Dave Berenbaum (@dberenbaum) - assigned to you in case it needs a manual merge.
PR Type
enhancement
Description
Remove "6–8" count from liveness_images descriptions
Remove
insufficientLivenesserror examples from 400 responsesUpdate CHANGELOG for v3.667.0
Diagram Walkthrough
File Walkthrough
1 files
Add v3.667.0 changelog entry6 files
Remove "6–8" count from liveness_images descriptionRemove count from description and insufficientLiveness errorRemove count from description and insufficientLiveness errorRemove count from description and insufficientLiveness errorRemove count from description and insufficientLiveness errorRemove "6–8" count from liveness_images description