chore: Settings schema changes for notifications

Robert Dailey 6 months ago
parent 6a848b50c3
commit bd3b398e38

@ -40,6 +40,9 @@
"description": "If there are more log files than the max allowed here, Log Janitor will remove the oldest log files."
}
}
},
"notifications": {
"$ref": "settings/notifications.json"
}
}
}

@ -0,0 +1,24 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/settings/notifications.json",
"type": "object",
"additionalProperties": false,
"properties": {
"apprise": {
"type": "object",
"additionalProperties": false,
"required": ["base_url", "key"],
"properties": {
"base_url": {
"type": "string"
},
"key": {
"type": "string"
},
"tags": {
"type": "string"
}
}
}
}
}
Loading…
Cancel
Save