-
-
Notifications
You must be signed in to change notification settings - Fork 404
JSON export format
Uwe Trottmann edited this page May 5, 2015
·
16 revisions
SeriesGuide can export and import your data using JSON text files. Their format is documented here.
The JSON is written without indents to save space and increase performance.
File name: sg-shows-export.json
[
{
"actors":"|Beth Behrs|Kat Dennings|",
"content_rating":"TV-14",
"country":"us",
"favorite":false,
"first_aired":"2011-09-20T00:00:00.000Z",
"genres":"|Comedy|",
"hidden":false,
"imdb_id":"tt1845307",
"last_edited":1430256880,
"last_updated":1430296309940,
"last_watched_episode":5007198,
"network":"CBS",
"overview":"A lot of girls move to New York City to \"make it\".",
"poster":"posters/248741-6.jpg", // TheTVDB banner path
"rating":7.70957,
"rating_user":9,
"rating_votes":5541,
"release_time":2000,
"release_timezone":"America/New_York",
"release_weekday":1,
"runtime":30,
"status":"continuing",
"title":"2 Broke Girls",
"tvdb_id":248741,
"seasons":[
{
"season":0,
"tvdb_id":465947,
"episodes":[
{
"collected":false,
"directors":"",
"episode":1,
"episode_absolute":0,
"episode_dvd":0.0,
"first_aired":1363305600000,
"gueststars":"",
"image":"",
"imdb_id":"",
"last_edited":1429311073,
"overview":"",
"rating":0.0,
"rating_user":0,
"rating_votes":0,
"skipped":false,
"title":"Paleyfest",
"tvdb_id":5199389,
"watched":false,
"writers":""
}
]
}, ...
]
}
]
File name: sg-lists-export.json
[
{
"list_id":"firstlist",
"name":"First list",
"order":1,
"items":[
{
"list_item_id":"248741-1-firstlist",
"tvdb_id":248741,
"type":"show"
},
{
"list_item_id":"522810-2-firstlist",
"tvdb_id":522810,
"type":"season"
},
{
"list_item_id":"4791401-3-firstlist",
"tvdb_id":4791401,
"type":"episode"
}
]
}, ...
]
File name: sg-movies-export.json
[
{
"tmdb_id":231576,
"imdb_id":"tt2870708",
"title":"Wish I Was Here",
"overview":"Something, something, dark side.",
"poster":"/8b54J6gCM27QodPBoBWAcC9JHnd.jpg", // TMDb poster path
"released_utc_ms":1389999600000,
"runtime_min":120,
"in_collection":false,
"in_watchlist":true,
"watched":false
},
...
]