Created
April 26, 2021 00:56
-
-
Save zzstoatzz/3aace5953f96581a2a45811e81cc5d62 to your computer and use it in GitHub Desktop.
airbyte-spec
This file contains hidden or 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
| { | |
| "documentationUrl": "https://docs.airbyte.io", | |
| "connectionSpecification": { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "title": "Smartsheets Source Spec", | |
| "type": "object", | |
| "required": ["access_token", "spreadsheet_id"], | |
| "additionalProperties": false, | |
| "properties": { | |
| "access_token": { | |
| "title": "API Access token", | |
| "description": "Found in Profile > Apps & Integrations > API Access within Smartsheet app", | |
| "type": "string", | |
| "airbyte_secret": true | |
| }, | |
| "spreadsheet_id": { | |
| "title": "Smartsheet ID", | |
| "description": "Found in File > Properties", | |
| "type": "string" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment