forked from adobe/api-mesh-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connector.schema.json
31 lines (31 loc) · 934 Bytes
/
connector.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
28
29
30
31
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://adobe.io/schemas/aio/connectors/0-0-1",
"title": "connector-schema",
"description": "A schema for the Adobe Connector",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The unique connector name"
},
"author": {
"type": "string",
"description": "The name of the author"
},
"version": {
"type": "string",
"description": "The version of the connector"
},
"description": {
"type": "string",
"description": "A description of the connector"
},
"provider": {
"type": "object",
"description": "The connector source"
}
},
"required":["name", "author", "version", "description", "provider"],
"additionalProperties" : false
}