*/ public function rules(): array { return [ 'values' => ['required', 'array'], 'public_submitter_name' => ['nullable', 'string', 'max:150'], 'public_submitter_email' => ['nullable', 'email', 'max:255'], 'captcha_token' => ['nullable', 'string', 'max:2000'], 'idempotency_key' => ['nullable', 'string', 'max:30'], ]; } }