-
Notifications
You must be signed in to change notification settings - Fork 7
/
Site.json
49 lines (49 loc) · 1.44 KB
/
Site.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": "#Site",
"description": "The physical location of an organization. A Person (i.e. employee) would typically has a relationship to a Site (i.e. located_at or work_at). Also used as the abstract reference to AWS Regions.",
"type": "object",
"allOf": [
{
"$ref": "#Entity"
},
{
"properties": {
"category": {
"description": "Type of site",
"type": "array",
"items": {
"type": "string",
"examples": [
"headquarters",
"branch",
"campus",
"office",
"aws-region",
"data-center",
"lab",
"other"
]
}
},
"location": {
"description": "The address/location of the site. Or an AWS Region (e.g. us-east-2).",
"type": "string"
},
"hours": {
"description": "Hours of operation. e.g. M-F 9am-6pm",
"type": "string"
},
"secured": {
"description": "Indicates the site is secured with physical controls such as key card access and surveillance cameras.",
"type": "boolean"
},
"restricted": {
"description": "Indicates that access to the site is restricted (a level above secured access).",
"type": "boolean"
}
},
"required": []
}
]
}