forked from EGI-Federation/fedcloud-catchall-operations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
76 lines (76 loc) · 1.86 KB
/
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
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "http://fedcloud.egi.eu/catchall-ops.json",
"type": "object",
"title": "site specs",
"description": "site configuration schema",
"definitions": {
"vodata": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"auth": {
"type": "object",
"properties": {
"project_id": {
"type": "string",
"title": "project id",
"description": "project supporting the VO at the site"
}
}
}
},
"required": [
"auth",
"name"
],
"additionalProperties": true
}
},
"required": [
"gocdb",
"endpoint"
],
"properties": {
"gocdb": {
"$id": "#/properties/gocdb",
"type": "string",
"title": "GOCDB site name",
"description": "The GOCDB site name.",
"default": ""
},
"endpoint": {
"$id": "#/properties/endpoint",
"type": "string",
"title": "keystone endpoint",
"description": "The URL of keystone endpoint (should match GOCDB entry).",
"default": ""
},
"region": {
"$id": "#/properties/region",
"type": "string",
"title": "OpenStack region to use",
"description": "OpenStack region to use if not the default one.",
"default": ""
},
"protocol": {
"$id": "#/properties/protocol",
"type": "string",
"title": "protocol in Keystone",
"description": "The protocol configured in keystone for egi.eu idp.",
"default": "openid"
},
"vos": {
"$id": "#/properties/vos",
"type": "array",
"title": "Supported VOs",
"description": "VOs supported at the site.",
"items": {
"$ref": "#/definitions/vodata"
}
}
},
"additionalProperties": false
}