1
0
mirror of synced 2026-01-24 07:01:51 -05:00
Files
airbyte/airbyte-integrations/connectors/source-stock-ticker-api-tutorial/spec.json
2021-01-06 17:07:34 -08:00

24 lines
651 B
JSON

{
"documentationUrl": "https://iexcloud.io/docs/api",
"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 IEX Cloud API key to use to hit the API.",
"airbyte_secret": true
}
}
}
}