Skip to content
Merged
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
62 changes: 35 additions & 27 deletions match_and_search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,34 +27,42 @@ paths:
components:
schemas:
MatchAndSearchRequest:
allOf:
- type: object
properties:
tag:
type: string
description: "Session identificator, should be unique for each session."
images:
type: array
description: "Person's images."
items:
type: object
properties:
content:
$ref: './common.yml#/components/schemas/ImageData'
type:
$ref: './match.yml#/components/schemas/ImageSource'
groupIds:
type: array
description: "IDs of the groups in which the search is performed."
items:
type: object
properties:
tag:
type: string
description: "Session identificator, should be unique for each session."
images:
type: array
description: "Person's images."
items:
type: object
properties:
content:
$ref: './common.yml#/components/schemas/ImageData'
imageUrl:
description: "Image URL."
type: string
format: uuid
tenant:
type: string
description: "A label used to group transactions by customers, applications, or other criteria."
env:
type: string
description: "A label used to differentiate transactions by development stages."
type:
$ref: './match.yml#/components/schemas/ImageSource'
groupIds:
type: array
description: "IDs of the groups in which the search is performed."
items:
type: string
format: uuid
threshold:
description: "The similarity threshold."
type: number
limit:
description: "The maximum number of results to be returned."
type: integer
tenant:
type: string
description: "A label used to group transactions by customers, applications, or other criteria."
env:
type: string
description: "A label used to differentiate transactions by development stages."

MatchAndSearchResponse:
allOf:
Expand Down