-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathenv.modified.rsp.notecard.api.json
More file actions
33 lines (33 loc) · 1.04 KB
/
env.modified.rsp.notecard.api.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/blues/notecard-schema/master/env.modified.rsp.notecard.api.json",
"title": "env.modified Response Application Programming Interface (API) Schema",
"description": "Response containing the timestamp of the last environment variable change.",
"type": "object",
"version": "1.1.2",
"apiVersion": "9.1.1",
"skus": [
"CELL",
"CELL+WIFI",
"LORA",
"WIFI"
],
"properties": {
"time": {
"description": "Timestamp indicating the last time any environment variable was changed on the device.",
"type": "integer",
"minApiVersion": "3.4.1"
}
},
"required": [
"time"
],
"additionalProperties": false,
"samples": [
{
"title": "Environment Modified Time Response",
"description": "Response containing the last modification timestamp.",
"json": "{\"time\": 1605814493}"
}
]
}