{
  "description": "Auto-generated derived type for NixBuilderJobsetSpec via `CustomResource`",
  "properties": {
    "spec": {
      "additionalProperties": false,
      "properties": {
        "attrPaths": {
          "description": "Flake fragments `nix-eval-jobs` evaluates, one invocation per entry.\nMust list at least one -- an empty list would mean nothing is ever\nevaluated for this project.",
          "items": {
            "type": "string"
          },
          "minItems": 1,
          "type": "array"
        },
        "flakeRef": {
          "description": "Repo-level flake identity, e.g. \"github:acme/widgets\" -- no ref/query\nfragment. Jobsets (one per branch/PR) are still created dynamically\nunderneath this project when a webhook reports a ref of this repo.",
          "type": "string"
        },
        "forceRecurse": {
          "default": false,
          "description": "Passed as `--force-recurse` to every `nix-eval-jobs` invocation for\nthis project's attr_paths. Needed for an attr_path whose attrset\nisn't marked `recurseForDerivations = true` -- without it,\nnix-eval-jobs silently reports zero jobs (exit 0, empty output)\ninstead of failing, for any nested attrset it won't walk into.",
          "type": [
            "boolean",
            "null"
          ]
        },
        "pools": {
          "default": [],
          "description": "Advisory list of pool names this project is expected to build on.\nNot enforced -- any pool whose system matches a job's system can\nbuild it regardless of this list.",
          "items": {
            "type": "string"
          },
          "type": [
            "array",
            "null"
          ]
        },
        "webhookSecretRef": {
          "additionalProperties": false,
          "properties": {
            "key": {
              "type": "string"
            },
            "name": {
              "type": "string"
            }
          },
          "required": [
            "key",
            "name"
          ],
          "type": "object"
        }
      },
      "required": [
        "attrPaths",
        "flakeRef",
        "webhookSecretRef"
      ],
      "type": "object",
      "x-kubernetes-validations": [
        {
          "rule": "self.flakeRef == oldSelf.flakeRef"
        }
      ]
    }
  },
  "required": [
    "spec"
  ],
  "title": "NixBuilderJobset",
  "type": "object"
}