-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspaceapi-directory-entry-structure.json
More file actions
55 lines (55 loc) · 1.63 KB
/
spaceapi-directory-entry-structure.json
File metadata and controls
55 lines (55 loc) · 1.63 KB
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
{
"title": "SpaceAPI Directory Entry Structure",
"description": "JSON structure documentation for the SpaceAPI Collector directory response",
"type": "object",
"fields": [
{
"name": "items",
"type": "array",
"description": "List of all registered spaces in the SpaceAPI directory",
"items": {
"type": "object",
"fields": [
{
"name": "url",
"type": "string",
"format": "uri",
"required": true,
"description": "URL to the space's SpaceAPI JSON endpoint"
},
{
"name": "valid",
"type": "boolean",
"required": true,
"description": "Whether the space's endpoint provides a valid SpaceAPI JSON file"
},
{
"name": "space",
"type": "string",
"required": false,
"description": "The display name of the hackerspace or makerspace"
},
{
"name": "lastSeen",
"type": "number",
"format": "unix-timestamp",
"required": false,
"description": "Unix timestamp of last successful reachability check"
},
{
"name": "errMsg",
"type": "string",
"required": false,
"description": "Error message if an issue was found with the endpoint"
},
{
"name": "data",
"type": "object",
"required": false,
"description": "Raw JSON payload from last successful scrape of the space's endpoint"
}
]
}
}
]
}