*/ public function rules(): array { return [ 'name' => ['required', 'string', 'max:255'], 'sort_order' => ['nullable', 'integer', 'min:0'], 'type' => ['nullable', 'in:standard,cross_event'], 'crew_auto_accepts' => ['nullable', 'boolean'], 'responder_self_checkin' => ['nullable', 'boolean'], ]; } }