From 087c43ad09fbd52beeafd531aef50787c02f8c5a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 27 Nov 2022 00:40:54 +0100 Subject: [PATCH] sync hub items with community (#949) Co-authored-by: rubenfiszel --- community/resource_types/mailchimp.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 community/resource_types/mailchimp.json diff --git a/community/resource_types/mailchimp.json b/community/resource_types/mailchimp.json new file mode 100644 index 0000000000..2cbf448d42 --- /dev/null +++ b/community/resource_types/mailchimp.json @@ -0,0 +1,19 @@ +{ + "workspace_id": "starter", + "name": "mailchimp", + "schema": { + "$schema": "https://json-schema.org/draft/2020-12/schema", + "properties": { + "token": { + "type": "string", + "description": "OAuth2 token", + "default": "" + } + }, + "required": [ + "token" + ], + "type": "object" + }, + "description": "The Mailchimp OAuth2 token" +}