You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/schemas/settings/notifications.json

25 lines
566 B

{
"$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"
}
}
}
}
}