-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* starting commit for column lineage API Signed-off-by: Allison Suarez Miranda <[email protected]> * flake8 fix Signed-off-by: Allison Suarez Miranda <[email protected]> * table uri and column name isntead of id Signed-off-by: Allison Suarez Miranda <[email protected]> * sort imports Signed-off-by: Allison Suarez Miranda <[email protected]> * more import sorting Signed-off-by: Allison Suarez Miranda <[email protected]>
- Loading branch information
1 parent
fc6c0f8
commit 681893f
Showing
5 changed files
with
75 additions
and
4 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Get lineage | ||
--- | ||
tags: | ||
- 'lineage' | ||
parameters: | ||
- name: table_uri | ||
in: path | ||
type: string | ||
schema: | ||
type: string | ||
required: true | ||
example: 'hive://gold.test_schema/test_table1' | ||
- name: column_name | ||
in: path | ||
type: string | ||
schema: | ||
type: string | ||
required: true | ||
example: 'test_col_name' | ||
- name: direction | ||
in: query | ||
type: string | ||
schema: | ||
type: string | ||
required: false | ||
example: 'upstream' | ||
- name: depth | ||
in: query | ||
type: integer | ||
schema: | ||
type: integer | ||
required: false | ||
example: 0 | ||
responses: | ||
200: | ||
description: 'Lineage for requested direction and depth' | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Lineage' |
File renamed without changes.
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