forked from microsoft/PowerPlatformConnectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaconn-settings.schema.json
82 lines (82 loc) · 2.08 KB
/
paconn-settings.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "http://json-schema.org/draft-07/schema#",
"id": "https://raw.githubusercontent.com/microsoft/PowerPlatformConnectors/master/schemas/paconn-settings.schema.json#",
"title": "The JSON schema for the settings.json files managed by the paconn tool.",
"type": "object",
"required": [],
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string",
"examples": [
"https://raw.githubusercontent.com/microsoft/PowerPlatformConnectors/master/schemas/paconn-settings.schema.json#"
]
},
"connectorId": {
"type": "string"
},
"environment": {
"title": "The GUID for the Power Apps environment",
"description": "Format: '00000000-0000-0000-0000-000000000000'.",
"type": "string",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"apiProperties": {
"type": "string",
"default": "apiProperties.json"
},
"apiDefinition": {
"type": "string",
"default": "apiDefinition.swagger.json"
},
"icon": {
"type": "string",
"default": "icon.png"
},
"powerAppsUrl": {
"type": "string",
"format": "uri",
"default": "https://api.powerapps.com",
"defaultSnippets": [
{
"label": "PROD",
"body": "https://api.powerapps.com"
},
{
"label": "TIP1",
"body": "https://tip1.api.powerapps.com"
}
]
},
"powerAppsApiVersion": {
"type": "string",
"default": "2016-11-01",
"enum": [
"2016-11-01"
]
},
"flowUrl": {
"type": "string",
"format": "uri",
"default": "https://api.flow.microsoft.com",
"defaultSnippets": [
{
"label": "PROD",
"body": "https://api.flow.microsoft.com"
},
{
"label": "TIP1",
"body": "https://tip1.api.flow.microsoft.com"
}
]
},
"flowApiVersion": {
"type": "string",
"default": "2016-11-01",
"enum": [
"2016-11-01"
]
}
},
"definitions": {}
}