-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoogleSheetsEvent.schema.json
executable file
·27 lines (27 loc) · 1.16 KB
/
GoogleSheetsEvent.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$id": "https://tandosid.dev/event-objects/google-sheets.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"definitions": {
"sheetsEventObject": {
"$id": "/properties/sheetsEventObject",
"type": "object",
"description": "The Docs event object is the portion of the overall event object that carries information about a user's Google Sheet and its contents. It's only present in an event object if the host application is Google Sheets.",
"properties": {
"id": {
"type": "string",
"description": "The ID of the document open in the Sheets UI"
},
"title": {
"type": "string",
"description": "The title of the document open in the Sheets UI"
},
"addonHasFileScopePermission": {
"type": "boolean",
"description": " Whether or not the add-on has drive.file scope permission for this document."
}
}
}
},
"$ref": "#/definitions/sheetsEventObject"
}