-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.schema.json
81 lines (81 loc) · 2.07 KB
/
manifest.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
{
"$id": "https://github.com/slackapi/manifest-schema/blob/main/manifest.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "All Versions Slack App Manifest File Configuration",
"type": "object",
"oneOf": [
{
"$comment": "if _metadata.major_version == 1",
"allOf": [
{
"properties": {
"_metadata": {
"properties": {
"major_version": {
"const": 1
}
},
"required": ["major_version"]
}
},
"required": ["_metadata"]
},
{
"$ref": "https://raw.githubusercontent.com/slackapi/manifest-schema/v0.0.0/schemas/manifest.schema.1.0.0.json"
}
]
},
{
"$comment": "if _metadata.major_version == 2",
"allOf": [
{
"properties": {
"_metadata": {
"properties": {
"major_version": {
"const": 2
}
},
"required": ["major_version"]
}
},
"required": ["_metadata"]
},
{
"$ref": "https://raw.githubusercontent.com/slackapi/manifest-schema/v0.0.0/schemas/manifest.schema.2.0.0.json"
}
]
},
{
"$comment": "when _metadata.major_version is not present",
"allOf": [
{
"properties": {
"_metadata": {
"not": {
"required": ["major_version"]
}
}
},
"required": ["_metadata"]
},
{
"$ref": "https://raw.githubusercontent.com/slackapi/manifest-schema/v0.0.0/schemas/manifest.schema.1.0.0.json"
}
]
},
{
"$comment": "when _metadata is not present",
"allOf": [
{
"not": {
"required": ["_metadata"]
}
},
{
"$ref": "https://raw.githubusercontent.com/slackapi/manifest-schema/v0.0.0/schemas/manifest.schema.1.0.0.json"
}
]
}
]
}