# ijBox資料型態 ### Musicfy 相關資料結構 - YTListenHistory ```json { "UUID": "ooxx5626@gmail.com", "email": "ooxx5626@gmail.com", "ListenList": [ { "videoID": "cLQtgoybcTk", "videoTitle": "理想混蛋 Bestards【獨角仙的夢】 Official Lyric Video", "duration": "PT311S", "thumbnail": "https://i.ytimg.com/vi/cLQtgoybcTk/maxresdefault.jpg", "count": 2, "timestamp": 1580969740211, "like": 1, "timelist": [ 1580969729306, 1580969740211 ] } ] } ``` #### like ``` 1 : like 0 : -1 : dislike ``` - YTNotFinishHistory ```json { "UUID": "ooxx5626@gmail.com", "email": "ooxx5626@gmail.com", "ListenList": [ { "videoID": "8L2ds1XxrvA", "videoTitle": "芒種 趙方婧【完整MV】", "duration": "PT213S", "thumbnail": "/maxresdefault.jpg", "count": 2, "timestamp": 1580969740211, "like": 1, "timelist": [ 1580969729306, 1580969740211 ], "listenTime": [ 8.016, 31.41 ] } ] } ``` - UserYTInfo ```json { "UUID": "ooxx5626@gmail.com", "email": "ooxx5626@gmail.com", "YTListenHistory": [ { "_id": ObjectId("5e03230459f86252a8b6a39d"), "videoID": [] }, { "_id": ObjectId("5e03230459f234122a8b6a8a"), "videoID": [] }, ], "YTNotFinishHistory": [ { "_id": ObjectId("5e3baf017d246b1bd3f1b5dd"), "videoID": [] } ] } ``` VideoInfo ```json { "_id": ObjectId("5e3a705e13ce037d33be210e"), "videoID": "cLQtgoybcTk", "videoTitle": "理想混蛋 Bestards【獨角仙的夢】 Official Lyric Video", "duration": "PT311S", "thumbnail": "https://i.ytimg.com/vi/cLQtgoybcTk/maxresdefault.jpg", "viewCount":1276488, "UploadDate":"2018-09-15", "commentCount":140, "version":2.5, "videoTags": [ "理想混蛋", "理想混蛋 Bestards", "獨角仙的夢", "雞丁", "邱建豪", "行星", "不是因為天氣晴朗才愛你", "華語音樂", "獨立音樂", "獨立樂團", "民謠", "吉他" ], "channelID" : "UCZn0sWyHi1OVNfug5l4G3BQ", "channelName" : "理想混蛋-雞丁" } ```