diff --git a/community/resource_types/gcal.json b/community/resource_types/gcal.json new file mode 100644 index 0000000000..57372a1b04 --- /dev/null +++ b/community/resource_types/gcal.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gcal", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "The OAuth token, refreshed if necessary" + } + } + }, + "description": "GCalendar OAuth credentials" +} diff --git a/community/resource_types/gdrive.json b/community/resource_types/gdrive.json new file mode 100644 index 0000000000..5b5d139b55 --- /dev/null +++ b/community/resource_types/gdrive.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gdrive", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "" + } + } + }, + "description": "GDrive OAuth credentials" +} diff --git a/community/resource_types/google.json b/community/resource_types/google.json new file mode 100644 index 0000000000..f65004d372 --- /dev/null +++ b/community/resource_types/google.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "google", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "" + } + } + }, + "description": "Google OAuth login credentials used to retrieve email and user info" +} diff --git a/community/resource_types/gsheets.json b/community/resource_types/gsheets.json new file mode 100644 index 0000000000..e8bbf69651 --- /dev/null +++ b/community/resource_types/gsheets.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "gsheets", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "token" + ], + "properties": { + "token": { + "type": "string", + "description": "The OAuth token, refreshed if necessary" + } + } + }, + "description": "GSheet OAuth credentials" +}