From 89643ba6fa98db82efd3246805ef801a8bfb5c81 Mon Sep 17 00:00:00 2001 From: Jeff Huth Date: Wed, 13 Nov 2019 17:03:56 -0800 Subject: Initial commit Discovery mode works. Still working on normal sync. --- .../schemas/spreadsheet_metadata.json | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 tap_google_sheets/schemas/spreadsheet_metadata.json (limited to 'tap_google_sheets/schemas/spreadsheet_metadata.json') diff --git a/tap_google_sheets/schemas/spreadsheet_metadata.json b/tap_google_sheets/schemas/spreadsheet_metadata.json new file mode 100644 index 0000000..852cb76 --- /dev/null +++ b/tap_google_sheets/schemas/spreadsheet_metadata.json @@ -0,0 +1,30 @@ +{ + "type": "object", + "additionalProperties": false, + "properties": { + "spreadsheetId": { + "type": ["null", "string"] + }, + "properties": { + "type": ["null", "object"], + "additionalProperties": false, + "properties": { + "title": { + "type": ["null", "string"] + }, + "locale": { + "type": ["null", "string"] + }, + "autoRecalc": { + "type": ["null", "string"] + }, + "timeZone": { + "type": ["null", "string"] + } + } + }, + "spreadsheetUrl": { + "type": ["null", "string"] + } + } +} -- cgit v1.2.3