-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source AlphaVantage - add quote stream to alpha-vantage (#20564)
* feat: add quote stream to alpha-vantage * updated spec.yaml with correct order values * docs: updated docs * auto-bump connector version Co-authored-by: Octavia Squidington III <[email protected]>
- Loading branch information
1 parent
90108ca
commit 1da4abb
Showing
10 changed files
with
66 additions
and
8 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
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
Empty file modified
0
airbyte-integrations/connectors/source-alpha-vantage/acceptance-test-docker.sh
100644 → 100755
Empty file.
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
38 changes: 38 additions & 0 deletions
38
airbyte-integrations/connectors/source-alpha-vantage/source_alpha_vantage/schemas/quote.json
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,38 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"properties": { | ||
"Global Quote": { | ||
"01. symbol": { | ||
"type": ["string", "null"] | ||
}, | ||
"02. open": { | ||
"type": ["string", "null"] | ||
}, | ||
"03. high": { | ||
"type": ["string", "null"] | ||
}, | ||
"04. low": { | ||
"type": ["string", "null"] | ||
}, | ||
"05. price": { | ||
"type": ["string", "null"] | ||
}, | ||
"06. volume": { | ||
"type": ["string", "null"] | ||
}, | ||
"07. latest trading day": { | ||
"type": ["string", "null"] | ||
}, | ||
"08. previous close": { | ||
"type": ["string", "null"] | ||
}, | ||
"09. change": { | ||
"type": ["string", "null"] | ||
}, | ||
"10. change percent": { | ||
"type": ["string", "null"] | ||
} | ||
} | ||
} | ||
} |
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