JDRssDownloader/config.schema
2022-06-20 10:15:20 +01:00

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"
]
}