> ## Documentation Index
> Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ParameterSet

> Reference for the ParameterSet configuration file, which defines the parent/child hierarchy of regulatory parameter sets, including BCBS as the root and derived sets CRR2 and US-NPR that can override BCBS values.

export function renderConfigIntro(fileName, description, storeName = "") {
  const cleanDescription = (description ?? "").trim();
  const sentence = cleanDescription && !cleanDescription.endsWith(".") ? `${cleanDescription}.` : cleanDescription;
  const cleanStore = (storeName ?? "").trim();
  return <p>
      The <strong>{fileName}.csv</strong> file {sentence}
      {cleanStore ? <>
          {" "}
          It is loaded into the <strong>{cleanStore}</strong> store.
        </> : null}
    </p>;
}

{renderConfigIntro("ParameterSet", "describes the parent/child relationship for parameter sets.", "None")}

## File format

| Field name         | Description              |
| ------------------ | ------------------------ |
| ParameterSet       | The child parameter set  |
| ParentParameterSet | The parent parameter set |

## File values

| ParameterSet | ParentParameterSet |
| ------------ | ------------------ |
| BCBS         |                    |
| CRR2         | BCBS               |
| US-NPR       | BCBS               |
