sync hub items with community (#193)

* [create-pull-request] automated change

* Update mongodb.json

Co-authored-by: rubenfiszel <rubenfiszel@users.noreply.github.com>
Co-authored-by: Ruben Fiszel <ruben@rubenfiszel.com>
This commit is contained in:
github-actions[bot]
2022-07-20 12:57:54 +02:00
committed by GitHub
co-authored by rubenfiszel Ruben Fiszel
parent d3bb7aff31
commit 14ec8d190f
3 changed files with 92 additions and 26 deletions
@@ -0,0 +1,20 @@
{
"workspace_id": "starter",
"name": "airtable_table",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"baseId": {
"type": "string",
"description": ""
},
"tableName": {
"type": "string",
"description": ""
}
},
"required": [],
"type": "object"
},
"description": ""
}
+26
View File
@@ -0,0 +1,26 @@
{
"workspace_id": "starter",
"name": "datadog",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"apiKey": {
"type": "string",
"description": ""
},
"appKey": {
"type": "string",
"description": ""
},
"apiBase": {
"type": "string",
"description": ""
}
},
"required": [
"apiKey"
],
"type": "object"
},
"description": ""
}
+46 -26
View File
@@ -2,37 +2,57 @@
"workspace_id": "starter",
"name": "mongodb",
"schema": {
"type": "object",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"required": [
"host",
"password",
"username"
],
"properties": {
"db": {
"type": "string",
"description": ""
},
"tls": {
"type": "boolean",
"description": ""
"description": "",
"default": true
},
"host": {
"type": "string",
"default": "localhost:27017",
"description": "Hostname or IP address or Unix domain socket path of a single mongod or mongos instance to connect to, or a mongodb URI"
},
"port": {
"type": "integer",
"default": 27017,
"description": "port number on which to connect"
},
"password": {
"type": "string",
"description": ""
},
"username": {
"type": "string",
"description": ""
"servers": [
{
"host": {
"type": "string",
"description": ""
},
"port": {
"type": "integer",
"description": "",
"default": 27017
}
}
],
"credential": {
"username": {
"type": "string",
"description": ""
},
"password": {
"type": "string",
"description": ""
},
"db": {
"type": "string",
"description": ""
},
"mechanism": {
"type": "string",
"description": "",
"default": "SCRAM-SHA-1"
}
}
}
},
"required": [
"db",
"tls",
"servers",
"credential"
],
"type": "object"
},
"description": "Mongodb connection infos"
"description": "MongoDb connection infos"
}