forked from gchq/Bailo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminimal_access_request_schema.json
More file actions
35 lines (35 loc) · 954 Bytes
/
minimal_access_request_schema.json
File metadata and controls
35 lines (35 loc) · 954 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"overview": {
"title": "Details",
"type": "object",
"properties": {
"name": {
"title": "What is the name of the access request?",
"description": "This will be used to distinguish your access request from other access requests of this model",
"type": "string"
},
"endDate": {
"title": "What is the end date for this access request?",
"type": "string",
"format": "date"
},
"entities": {
"title": "Additional contacts",
"type": "array",
"items": {
"type": "string"
},
"minLength": 1,
"widget": "entitySelector"
}
},
"required": ["name"],
"additionalProperties": false
}
},
"required": ["overview"],
"additionalProperties": false
}