{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"msg": { "type": "string" },
"code": { "type": "number", "mock": { "mock": "0" } },
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"spaceId": { "type": "number", "description": "ID không gian" },
"fileId": { "type": "string", "description": "ID tệp" },
"fileName": { "type": "string", "description": "Tên tệp" },
"type": {
"type": "string",
"description": "Loại tệp: 1:document, tài liệu 2:spreadsheet, bảng 3:presentation, bài thuyết trình"
},
"parentId": {
"type": "string",
"description": "ID nút cha, khi cấp trên là không gian, thì là \"\""
},
"icon": { "type": "string" },
"fileOrder": {
"type": "string",
"description": "Nút cùng cấp trước đó của tệp hiện tại"
}
},
"required": [
"spaceId",
"fileId",
"fileName",
"type",
"parentId",
"fileOrder"
]
}
},
"requestId": { "type": "string" },
"errNo": { "type": "number" },
"errStr": { "type": "string" }
},
"required": ["msg", "code", "data", "requestId"]
}