Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ttl field #100

Merged
merged 2 commits into from
Sep 12, 2024
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
5 changes: 5 additions & 0 deletions identification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ components:
items:
type: string
format: uuid
ttl:
type: integer
description: "The lifespan of the Person's records, seconds. Optional."
nullable: true
default: null
PersonToUpdateFields:
type: object
description: "Person Request body: name and metadata."
Expand Down
5 changes: 5 additions & 0 deletions search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ definitions:
type: object
additionalProperties: true
description: "A free-form object containing person's extended attributes."
ttl:
type: integer
description: "The lifespan of the Person's records, seconds. Optional."
nullable: true
default: null
groupIds:
type: array
description: "IDs of the groups in which the search is performed."
Expand Down
Loading