Original API used in the example is no longer free, so while following the tutorial I found a different API to use in the tutorial and updated the example code to match the new API. Also made a few small changes. Update Build-a-connector tutorial * Update screenshots and instructions to match current UI * Update code examples to use Polygon.io API * Add links to language-specific guides * Consistently use Python (uppercase P) when referring to the language and python (lowercase) p in code samples * Consistently do not use "." in lists * Add an image of Airbyte startup banner * Add a note for M1 macs * Remove unused images * Make Dockerfile consistent with the tutorial
24 lines
711 B
JSON
24 lines
711 B
JSON
{
|
|
"documentationUrl": "https://polygon.io/docs/stocks/get_v2_aggs_grouped_locale_us_market_stocks__date",
|
|
"connectionSpecification": {
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"required": ["stock_ticker", "api_key"],
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"stock_ticker": {
|
|
"type": "string",
|
|
"title": "Stock Ticker",
|
|
"description": "The stock ticker to track",
|
|
"examples": ["AAPL", "TSLA", "AMZN"]
|
|
},
|
|
"api_key": {
|
|
"title": "API Key",
|
|
"type": "string",
|
|
"description": "The Polygon.io Stocks API key to use to hit the API.",
|
|
"airbyte_secret": true
|
|
}
|
|
}
|
|
}
|
|
}
|