-
Notifications
You must be signed in to change notification settings - Fork 6
/
connector.schema.json
49 lines (49 loc) · 1.36 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"$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"
},
"variables": {
"type": ["object", "null"],
"description": "The list of variables for source"
},
"provider": {
"type": "object",
"description": "The connector source"
},
"files": {
"type": ["array", "null"],
"items": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"content": {
"type": "string"
}
}
}
}
},
"required":["name", "author", "version", "description", "provider"],
"additionalProperties" : false
}