mirror of
https://github.com/karl0ss/JDRssDownloader.git
synced 2025-04-27 20:03:40 +01:00
52 lines
920 B
Plaintext
52 lines
920 B
Plaintext
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"JDUserName": {
|
|
"type": "string"
|
|
},
|
|
"JDPassword": {
|
|
"type": "string"
|
|
},
|
|
"RSSFeed": {
|
|
"type": "string"
|
|
},
|
|
"RSSFeedRefreshMins": {
|
|
"type": "number"
|
|
},
|
|
"JDPostLinksMins": {
|
|
"type": "number"
|
|
},
|
|
"Autostart": {
|
|
"type": "boolean"
|
|
},
|
|
"OnlyHEVC": {
|
|
"type": "boolean"
|
|
},
|
|
"Shows": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"Name": {
|
|
"type": "string"
|
|
},
|
|
"Quality": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["Name", "Quality"]
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"JDUserName",
|
|
"JDPassword",
|
|
"RSSFeed",
|
|
"RSSFeedRefreshMins",
|
|
"JDPostLinksMins",
|
|
"Autostart",
|
|
"OnlyHEVC",
|
|
"Shows"
|
|
]
|
|
} |