diff --git a/community/resource_types/airtable.json b/community/resource_types/airtable.json new file mode 100644 index 0000000000..42d054b36c --- /dev/null +++ b/community/resource_types/airtable.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "airtable", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "token": { + "type": "string", + "description": "" + } + }, + "required": [ + "token" + ], + "type": "object" + }, + "description": "The airtable OAuth token" +} diff --git a/community/resource_types/github.json b/community/resource_types/github.json new file mode 100644 index 0000000000..69c37e9290 --- /dev/null +++ b/community/resource_types/github.json @@ -0,0 +1,18 @@ +{ + "workspace_id": "starter", + "name": "github", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "token": { + "type": "string", + "description": "" + } + }, + "required": [ + "token" + ], + "type": "object" + }, + "description": "The github OAuth credentials" +}