-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some code cleanup; Bump version for test
- Loading branch information
Showing
6 changed files
with
85 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 34 additions & 29 deletions
63
search_service/api/swagger_doc/table/search_table_filter.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,39 @@ | ||
Table search | ||
This is used by the frontend API to search table information. | ||
'TODO(ttannis): Update this file' | ||
--- | ||
tags: | ||
- 'search' | ||
parameters: | ||
- name: page_index | ||
in: query | ||
type: integer | ||
schema: | ||
type: integer | ||
default: 0 | ||
required: false | ||
- name: index | ||
in: query | ||
type: string | ||
schema: | ||
type: string | ||
default: 'table_search_index' | ||
required: false | ||
responses: | ||
200: | ||
description: table result information with query string | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/SearchTableResults' | ||
500: | ||
description: Exception encountered while searching | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/ErrorResponse' | ||
paths: | ||
/search_table: | ||
post: | ||
summary: This is used by the frontend API to search table information. | ||
requestBody: | ||
description: The json data passed from the frontend API to execute a search. | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
page_index: | ||
type: integer | ||
schema: | ||
type: integer | ||
default: 0 | ||
query_term: | ||
type: string | ||
search_request: | ||
type: object | ||
responses: | ||
200: | ||
description: table result information with query string | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/SearchTableResults' | ||
500: | ||
description: Exception encountered while searching | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/ErrorResponse' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters