*/ public function rules(): array { return [ 'idempotency_key' => ['required', 'string', 'min:6', 'max:30'], 'opened_at' => ['nullable', 'date'], 'submitted_in_locale' => ['nullable', 'string', 'max:10'], 'public_submitter_name' => ['nullable', 'string', 'max:150'], 'public_submitter_email' => ['nullable', 'email', 'max:255'], ]; } }