aboutsummaryrefslogtreecommitdiffhomepage
path: root/tap_google_sheets/schemas/file_metadata.json
diff options
context:
space:
mode:
authorJeff Huth <jeff.huth@bytecode.io>2019-11-13 17:03:56 -0800
committerJeff Huth <jeff.huth@bytecode.io>2019-11-13 17:03:56 -0800
commit89643ba6fa98db82efd3246805ef801a8bfb5c81 (patch)
tree739027b4e827def2db81631c9d6ed58ec2b97809 /tap_google_sheets/schemas/file_metadata.json
parent5f8005471d3affaaf23489df93a58ca64c3da3ca (diff)
downloadtap-google-sheets-89643ba6fa98db82efd3246805ef801a8bfb5c81.tar.gz
tap-google-sheets-89643ba6fa98db82efd3246805ef801a8bfb5c81.tar.zst
tap-google-sheets-89643ba6fa98db82efd3246805ef801a8bfb5c81.zip
Initial commit
Discovery mode works. Still working on normal sync.
Diffstat (limited to 'tap_google_sheets/schemas/file_metadata.json')
-rw-r--r--tap_google_sheets/schemas/file_metadata.json44
1 files changed, 44 insertions, 0 deletions
diff --git a/tap_google_sheets/schemas/file_metadata.json b/tap_google_sheets/schemas/file_metadata.json
new file mode 100644
index 0000000..25c19c4
--- /dev/null
+++ b/tap_google_sheets/schemas/file_metadata.json
@@ -0,0 +1,44 @@
1{
2 "type": "object",
3 "additionalProperties": false,
4 "properties": {
5 "id": {
6 "type": ["null", "string"]
7 },
8 "name": {
9 "type": ["null", "string"]
10 },
11 "version": {
12 "type": ["null", "integer"]
13 },
14 "createdTime": {
15 "type": ["null", "string"],
16 "format": "date-time"
17 },
18 "modifiedTime": {
19 "type": ["null", "string"],
20 "format": "date-time"
21 },
22 "teamDriveId": {
23 "type": ["null", "string"]
24 },
25 "driveId": {
26 "type": ["null", "string"]
27 },
28 "lastModifyingUser": {
29 "type": ["null", "object"],
30 "additionalProperties": false,
31 "properties": {
32 "kind": {
33 "type": ["null", "integer"]
34 },
35 "displayName": {
36 "type": ["null", "string"]
37 },
38 "emailAdress": {
39 "type": ["null", "string"]
40 }
41 }
42 }
43 }
44}