]> git.immae.eu Git - github/fretlink/tap-google-sheets.git/blame - tap_google_sheets/schemas/sheet_metadata.json
Bump to v1.1.0, update changelog (#26)
[github/fretlink/tap-google-sheets.git] / tap_google_sheets / schemas / sheet_metadata.json
CommitLineData
89643ba6
JH
1{
2 "type": "object",
3 "additionalProperties": false,
4 "properties": {
5 "spreadsheetId": {
6 "type": ["null", "string"]
7 },
8 "sheetId": {
9 "type": ["null", "integer"]
10 },
11 "title": {
12 "type": ["null", "string"]
13 },
14 "index": {
15 "type": ["null", "integer"]
16 },
17 "sheetType": {
18 "type": ["null", "string"]
19 },
20 "sheetUrl": {
21 "type": ["null", "string"]
22 },
23 "gridProperties": {
24 "type": ["null", "object"],
25 "additionalProperties": false,
26 "properties": {
27 "rowCount": {
28 "type": ["null", "integer"]
29 },
30 "columnCount": {
31 "type": ["null", "integer"]
32 },
33 "frozenRowCount": {
34 "type": ["null", "integer"]
35 },
36 "frozenColumnCount": {
37 "type": ["null", "integer"]
38 }
39 }
40 },
41 "columns": {
42 "anyOf": [
43 {
44 "type": "array",
45 "items": {
46 "type": ["null", "object"],
47 "additionalProperties": false,
48 "properties": {
49 "columnIndex": {
50 "type": ["null", "integer"]
51 },
52 "columnLetter": {
53 "type": ["null", "string"]
54 },
55 "columnName": {
56 "type": ["null", "string"]
57 },
58 "columnType": {
59 "type": ["null", "string"]
60 },
61 "columnSkipped": {
62 "type": ["null", "boolean"]
63 },
64 "type": {
65 "anyOf": [
66 {
67 "type": "array",
68 "items": {
69 "type": "string"
70 }
71 },
72 {
73 "type": "null"
74 }
75 ]
76 },
77 "format": {
78 "type": ["null", "string"]
79 }
80 }
81 }
82 },
83 {
84 "type": "null"
85 }
86 ]
87 }
88 }
89}