@xo-cash/utils
    Preparing search index...

    Variable xoTemplateRoleSlotsRequirementsSchemaConst

    xoTemplateRoleSlotsRequirementsSchema: ZodObject<
        { max: ZodOptional<(...)>; min: ZodNumber },
        $strict,
    > = ...

    Validation schema for the slot count configuration on a role requirement. Declares how many participants of a given role are needed. min sets the lower bound and max sets the upper bound. When max is absent, there is no upper limit.

    {
    "actions": {
    "[id]": {
    "requirements": {
    "participants": [
    { "slots": { "min": 1, "max": 1 } } ← this schema
    ]
    }
    }
    }
    }