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/config/includes.json

33 lines
1.0 KiB

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/config/includes.json",
"type": "array",
"minItems": 1,
"description": "One or more include directives, which refer to external YAML to merge into an instance config.",
"items": {
"type": "object",
"anyOf": [
{
"additionalProperties": false,
"required": ["config"],
"description": "Refer to a configuration file on the local filesystem. Can be relative or absolute. Relative paths start at the `configs` directory.",
"properties": {
"config": {
"type": "string"
}
}
},
{
"additionalProperties": false,
"required": ["template"],
"description": "Refer to a configuration file in the config-templates repository. Use the `id` of the template here; not a path.",
"properties": {
"template": {
"type": "string"
}
}
}
]
}
}