{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "https://raw.githubusercontent.com/recyclarr/recyclarr/master/schemas/settings/repository.json",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "clone_url": {
      "type": "string",
      "format": "uri",
      "title": "Clone URL to the trash guides git repository",
      "description": "A URL compatible with `git clone` that is used to clone the Trash Guides repository. This setting exists for enthusiasts that may want to instead have Recyclarr pull data from a fork instead of the official repository."
    },
    "branch": {
      "type": "string",
      "title": "The name of a branch to check out in the repository"
    },
    "sha1": {
      "type": "string",
      "title": "A SHA1 (commit hash) in Git to use",
      "description": "If specified, it overrides the `branch` setting. This SHA1 is passed to `git reset --hard` to force your local clone to this specific revision in the repository. If not specified, only the `branch` controls what revision is used in the repo."
    }
  }
}