[sample] update ilbidm library
[apps/native/iot-device-manager.git] / schema / logArchiveResult.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema",
3   "$id": "http://tizen.org/logArchiveResult.json",
4   "title": "Log Archive Result",
5   "description": "Result of log archive request",
6   "type": "object",
7   "required": [
8     "archiveFile",
9     "md5Checksum"
10   ],
11   "properties": {
12     "archiveFile": {
13       "$id": "#/properties/archiveFile",
14       "description": "Path where the archive file is located",
15       "type": "string",
16       "examples": [
17         "/home/owner/org.example.test/data/log.zip"
18       ]
19     },
20     "md5Checksum": {
21       "$id": "#/properties/md5Checksum",
22       "description": "Value of MD5 Checksum to validate the archive file",
23       "type": "string",
24       "examples": [
25         "595f44fec1e92a71d3e9e77456ba80d1"
26       ]
27     }
28   }
29 }