[sample] update ilbidm library
[apps/native/iot-device-manager.git] / schema / logArchiveRequest.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema",
3   "$id": "http://tizen.org/logArchiveRequest.json",
4   "title": "Log Archive Request",
5   "description": "Request for generating and saving the archive file of logs",
6   "type": "object",
7   "required": [
8     "logPath",
9     "archiveFile"
10   ],
11   "properties": {
12     "logPath": {
13       "$id": "#/properties/logPath",
14       "description": "Paths of log files or directories to be archived",
15       "type": "array",
16       "items": {
17         "$id": "#/properties/logPath/items",
18         "type": "string",
19         "examples": [
20             "/home/owner/org.example.test/data/logs1",
21             "/home/owner/org.example.test/data/logs2/logFile.log"
22         ]
23       }
24     },
25     "archiveFile": {
26       "$id": "#/properties/archiveFile",
27       "description": "Path where the archive file is to be located",
28       "type": "string",
29       "examples": [
30         "/home/owner/org.example.test/data/log.zip"
31       ]
32     }
33   }
34 }